2013-03-24 139 views

回答

3

试试这个 如果你有图片的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")); 
+0

这将相册中的照片,但它不是张贴了时间线 – 2013-12-21 09:34:18