Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to post a photo from a URL (not local file) on a Facebook Album using the Facebook PHP 3.2 SDK. I have managed to do the same using curl, but when i try the "simpler" api method, i get an error:

Array\nArray\nOAuthException: (#100) Missing message or attachment

    $ret_obj = $facebook->api('/me/photos', 'POST', array(
                                     'url' => $image_url,
                                     'message' => 'image name',
                                     )
                                  );

If i try to replace "url" with "source" and keep the url, then Fb complains that it expected a file which makes sense.

The code bellow works but it is messy and i would prefer to start using the Fb api:

    $args = array(
       'access_token' => $user_token, //User access token
       'message' => "some message",
       'url' => $image_url
    );

    $ch = curl_init();
    $url = 'https://graph.facebook.com/'.$user_fb_id.'/photos?';
            curl_setopt($ch, CURLOPT_URL,$url);
            curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
            curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2);
            curl_setopt($ch, CURLOPT_POST, true);
            curl_setopt($ch, CURLOPT_POSTFIELDS, $args);
            curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    $data_cover = curl_exec($ch);

Facebook photo api reference: https://developers.facebook.com/docs/reference/api/photo/

share|improve this question
Trying again i realized that the error was coming from a different part of my code. Both pieces of code (api and curl) work well and server the same purpose. – user1827796 Nov 15 '12 at 20:30

closed as too localized by Michael Myers Nov 16 '12 at 20:11

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

Browse other questions tagged or ask your own question.