Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I read the instructions: Upload Photo To Album with Facebook's Graph API

But although I follow the instructions, the image can't be uploaded to FB. Here is my code. Please help me.

$graph_url = "https://graph.facebook.com/". $album_id . "/photos?access_token=" . $access_token;

$ch = curl_init();
    curl_setopt($ch, CURLOPT_HEADER, false);
    curl_setopt($ch, CURLOPT_VERBOSE, 0);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    curl_setopt($ch, CURLOPT_POST, true);
    curl_setopt($ch, CURLOPT_URL, $post_url );

$post_array = array(
        "source" =>"@". realpath("photo.jpg"),
        "message"=>"Upload " . date('Y-m-d h:i:s') 
    );
    curl_setopt($ch, CURLOPT_POSTFIELDS, $post_array); 
    $response = curl_exec($ch);
$graph_url = "https://graph.facebook.com/". $album_id . "/photos?access_token=" . $access_token;

$ch = curl_init();
    curl_setopt($ch, CURLOPT_HEADER, false);
    curl_setopt($ch, CURLOPT_VERBOSE, 0);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    curl_setopt($ch, CURLOPT_POST, true);
    curl_setopt($ch, CURLOPT_URL, $post_url );

$post_array = array(
        "source" =>"@". realpath("photo.jpg"),
        "message"=>"Upload " . date('Y-m-d h:i:s') 
    );
    curl_setopt($ch, CURLOPT_POSTFIELDS, $post_array); 
    $response = curl_exec($ch);
share|improve this question
2  
"image can't be uploaded to FB". Why not? Do you get any errors? – CodeCaster Sep 5 '11 at 10:48

1 Answer

Try this out and see the result:

echo realpath("photo.jpg") 

Does it return you the correct path?

Try with /photo.jpg or ./photo

share|improve this answer
I'm trying same method to post image to fb. I checked path coming from realpath and it's correct, but still curl returns empty string. any idea? – dvdnhm Jun 17 '12 at 20:42

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.