0
メッセージの中の誰かの壁に画像を投稿できる制限はありますか?画像付きのFacebookの壁に掲示する
私はこのコードを使用する場合:
if (isset($_GET['publish'])){
try {
$publishStream = $facebook->api("/$user/feed", 'post', array(
'message' => "I love thinkdiff.net for facebook app development tutorials. <img src="http://c3354688.r88.cf0.rackcdn.com/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley"> ",
'link' => 'http://ithinkdiff.net',
'picture' => 'http://thinkdiff.net/ithinkdiff.png',
'name' => 'iOS Apps & Games',
'description'=> 'Checkout iOS apps and games from iThinkdiff.net. I found some of them are just awesome!'
)
);
//as $_GET['publish'] is set so remove it by redirecting user to the base url
} catch (FacebookApiException $e) {
d($e);
}
}
すべてが正常に動作しますが、私は別のURLのフォトイストに画像を変更した場合、画像が利用可能であるという事実にもかかわらず、提示を。
提案がありますか?
異なるURLが何であるか知らずに答えるのは難しいです。 – ceejayoz