在朋友的牆上張貼消息,圖API。 我有正在使用該應用程序的用戶的publish_stream擴展權限。使用圖形API在朋友的牆上張貼
如果我想在我的牆上張貼某些東西,代碼就會起作用。
是否有任何方法可以發佈在牆上或發送消息給特定用戶的所有朋友?
請幫忙謝謝!!
以下是代碼,但它不工作。
$friends = $facebook->api('/me/friends');
foreach($friends['data'] as $friend){
$friendsUserId = $friend['id'];
echo $friendsUserId . "</br>";
$result = $facebook->api('/$friendsUserId/feed', 'POST', array(
message' => 'Test Message' ));
print_r($result);
}
這不會工作了。看facebook博客以供參考。 https://developers.facebook.com/blog/post/2012/10/10/growing-quality-apps-with-open-graph/ – Underdog 2013-10-07 10:03:10