我想在我的页面时间轴上发布照片状态但无法发布。我可以发布状态,链接,链接缩略图等。我只想通过Graph API发布照片状态。我正在使用PHP。
答案 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"));