私のインデックス ファイルでは、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' => ""
));