0

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

4

1 回答 1

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"));
于 2013-03-24T18:01:04.903 回答