0

I want to post a photo status on my page timeline but unable to post it. I am able to post status,link,link with thumbnail etc.. I only want to post a photo status via Graph API. I'm using PHP.

rink.attendant.6
  • 44,500
  • 61
  • 101
  • 156
Amit Kumar Khare
  • 565
  • 6
  • 17

1 Answers1

3

try this if you have picture url

$picUrl = 'http://somedomain.com/picture.jpg';
$photoId = $facebook->api("me/photos","POST",array('url'=>$picUrl,'message'=>"status message"));

OR if you have image file on your machine

$imgPath = '@' . realpath($imgfile);
$photoId = $facebook->api("me/photos","POST",array('image'=>$imgPath,'message'=>"status message"));
Smita
  • 4,634
  • 2
  • 25
  • 32