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

时间:2013-03-24 17:38:03

标签: php facebook facebook-graph-api facebook-timeline

我想在我的页面时间轴上发布照片状态但无法发布。我可以发布状态,链接,链接缩略图等。我只想通过Graph API发布照片状态。我正在使用PHP。

1 个答案:

答案 0 :(得分:3)

试试这个 如果您有图片网址

$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"));