0

在这个问题上,我已经绞尽脑汁多年了。加载 JavaScript SDK 后,我无法对图形 API 进行任何 GET 调用。我正在尝试使用 /me/home,但我也尝试使用 /me 进行调试。奇怪的是,如果我检查用户的登录状态,它会返回一个访问令牌,我可以使用它在地址栏中完美地检索新闻提要。但是,只要我使用 JavaScript 对 Graph API 进行 GET 调用,我就会得到:

“必须使用活动访问令牌来查询有关当前用户的信息。”

我也可以使用 SDK 让 POST 调用用户的提要。最后,我检查以确保我拥有 read_stream 权限。

window.fbAsyncInit = function() {
  FB.init({
    appId      : '<?php echo($facebook_key); ?>', // App ID
    channelUrl : '//'+window.location.hostname+'/channel.php', // Channel File
    status     : true, // check login status
    cookie     : true, // enable cookies to allow the server to access the session
    xfbml      : true  // parse XFBML
  });

  // listen for and handle auth.statusChange events
  FB.Event.subscribe('auth.statusChange', function(response) {
    if (response.authResponse) {
      // user has auth'd your app and is logged into Facebook
      console.log(response);
    } else {
      location.href='welcome.php';
    };
  });

  FB.getLoginStatus(function(response) {
    console.log(response);
  });

  //get Facebook news feed
  FB.api('/me/home', 'get', function(response) {
    console.log(response);
  });

};

// Load the SDK Asynchronously
(function(d){
  var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
  if (d.getElementById(id)) {return;}
  js = d.createElement('script'); js.id = id; js.async = true;
  js.src = "//connect.facebook.net/en_US/all.js";
  ref.parentNode.insertBefore(js, ref);
}(document));

//status update function
function post (form) {
  var status = form.status.value;
  FB.api('/me/feed', 'post', { message: status }, function(response) {
    if (!response || response.error) {
      alert('Error occured');
    } else {
      alert('Status updated');
    };
  });
};
4

1 回答 1

2

我会尝试将您对 /me 的呼叫转移到您的 FB.getLoginStatus 函数中:

FB.getLoginStatus(function(response) {
   if (response.status === 'connected') {
    //get Facebook news feed
     FB.api('/me/home', 'get', function(response) {
       console.log(response);
     });
  }
 });

我认为问题是,在确认身份验证之前,您对 api 的调用正在触发。希望将此函数移动到 getLoginStatus 回调中应该可以解决此问题。

您可以在此处查看更多示例https://developers.facebook.com/tools/console/

于 2012-07-27T09:46:03.540 回答