2013-03-24 71 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

相關問題