I am trying to post an image through graph api to the wall of a user. I tried to post an image hosted in my server and it worked fine. But when I try to post a local file it gives the following error. Uncaught OAuthException: (#100) picture URL is not properly formatted.
My code is shown below
require_once "facebook-sdk/src/facebook.php";
$app_id = "23432423432";
$app_secret = "345345353553535353534534";
// Init facebook api.
$facebook = new Facebook(array(
'appId' => $app_id,
'secret' => $app_secret,
'cookie' => true
));
$urlTitle = 'my url';
$review = 'test desc';
//$picLocal = 'http://l.yimg.com/a/i/ww/met/yahoo_logo_in_061509.png';
$picLocal = '@' . realpath('/var/www/PixShare/a.jpg');
$attachment = array('message' => ' testing',
'description' => 'Review: ' . $review,
'access_token' => 'USER ACCESS TOKEN',
'picture' => $picLocal
);
if(!($sendMessage = $facebook->api('/me/feed/','post',$attachment))){
$errors= error_get_last();
echo "Facebook publish error: ".$errors['type'];
echo "<br />\n".$errors['message'];
Please let me know if this is possible.