0

友達のウォールに公開しようとしてもうまくいきません。どこに問題があるのか​​わからない。誰か助けてくれませんか?

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>');
}
4

1 に答える 1