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/