Jump to content

Errors up image on picasa


sangnhoc88

Recommended Posts

Hi,

 

I have picasa upload code, works fine at first, now the error

 

$path = getcwd(). '/images/102183satan.jpg';


    $albumUrl = "https://picasaweb.google.com/data/feed/api/user/$user/albumid/$/albumid";


    // XML Upload được cung cấp bởi google
    $rawImgXml = '<entry xmlns="http://www.w3.org/2005/Atom">
                  <title>' . $path . '</title>
                  <summary>' . $path . '</summary>
                  <category scheme="http://schemas.google.com/g/2005#kind"
                    term="http://schemas.google.com/photos/2007#photo"/>
                </entry>';


    // Lấy thông tin File
    $fileSize = filesize($path);
    $fh = fopen($path, 'rb');
    $imgData = fread($fh, $fileSize);
    fclose($fh);


    // Data header, cấu trúc được cung cấp bởi google
    $dataLength = strlen($rawImgXml) + $fileSize;
    $data = "";
    $data .= "\nMedia multipart posting\n";
    $data .= "--P4CpLdIHZpYqNn7\n";
    $data .= "Content-Type: application/atom+xml\n\n";
    $data .= $rawImgXml . "\n";
    $data .= "--P4CpLdIHZpYqNn7\n";
    $data .= "Content-Type: image/jpeg\n\n";
    $data .= $imgData . "\n";
    $data .= "--P4CpLdIHZpYqNn7--";
    $header = array(
        'GData-Version:  2', 
        'Authorization: '.$access_token,
        'Content-Type: multipart/related; boundary=P4CpLdIHZpYqNn7;', 
        'Content-Length: ' . strlen($data), 'MIME-version: 1.0'
    );


    // Upload
    $ch = curl_init();  
    curl_setopt($ch, CURLOPT_URL, $albumUrl);  
    curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);  
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);  
    curl_setopt($ch, CURLOPT_POST, true);  
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);  
    curl_setopt($ch, CURLOPT_POSTFIELDS, $data);  
    curl_setopt($ch, CURLOPT_HEADER, true);  
    curl_setopt($ch, CURLOPT_HTTPHEADER, $header);  
    $ret = curl_exec($ch);
    curl_close($ch);
    echo $ret;
 
Help me
Edited by Ch0cu3r
Added code tags
Link to comment
Share on other sites

 

have picasa upload code, works fine at first, now the error

What error is that? Post all error message(s) in full.

 

It would also be helpful if you could explained what it is your are tying to do and what you are expecting the code to do?

 

Also note when posting code place wrap it within


tags or click the <> icon in the editor.

Edited by Ch0cu3r
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.