在我的索引文件中,我显示了来自 image.php 文件的随机图像。我正在尝试找到将索引文件中的图像显示发布到 facebook 墙上的方法。
有什么办法可以将 image.php 生成的图像发布到 facebook 墙上?
//index file
<img src="image.php">
//post to wall file
$facebook->api("/me/feed", "post", array(
'message' => "",
'picture' => "", //same image from image.php goes here
'link' => "",
'name' => "",
'caption' => ""
));