当我尝试在朋友的墙上发布时,它不起作用。我不知道问题出在哪里。有人可以帮助我吗?
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>');
}