通过Graph API在facebook时间轴上发布大型图像/图片


Post Large Images/ Pictures on facebook timeline via Graph API

我想在我的页面时间轴上发布照片状态,但无法发布。我能够张贴状态,链接,链接缩略图等。我只想通过图形API发布照片状态。

试试这个如果你有图片url

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

或者如果您的机器上有图像文件

$imgPath = '@' . realpath($imgfile);
$photoId = $facebook->api("me/photos","POST",array('image'=>$imgPath,'message'=>"status message"));