當我嘗試在朋友的牆上發佈時,它不起作用。我不知道問題出在哪裏。有人能幫助我嗎?PHP-SDK publish_stream?
if ($user) {
try {
// Get the user profile data you have permission to view
$user_profile = $facebook->api('/me/feed', 'POST',
array(
'link' => 'www.your-website.com',
'message' => 'Hello World!'
));
} catch (FacebookApiException $e) {
$user = null;
}
} else {
$loginUrl = $facebook->getLoginUrl(array('scope' =>'publish_stream','redirect_uri'=>'http://your-website/index.html'));
die('<script> top.location.href="'.$loginUrl.'";</script>');
}
你是說你不能通過api發佈到朋友牆嗎?或者,當一個朋友使用你的應用程序,他們不能張貼到自己的牆上? – TommyBs 2013-05-04 15:43:55