0

根据 FB SDK 文档,似乎响应对象中的一些数据我应该能够检索到无访问令牌。(https://developers.facebook.com/docs/reference/api/user/)但是,当我这样做时,我会在响应对象中收到消息 -

An active access token must be used to query information about the current user.

有人对此事有任何见解吗?

万分感谢!

编辑 - 我正在使用的代码:

function testAPI() {
                console.log('Welcome!  Fetching your information.... ');
                FB.api('/me', function (response) {
                    console.log('Good to see you, ' + response.name + '.');
                    console.log(response);
                });
            }
4

1 回答 1

2

到目前为止,我的发现表明,除非一个人拥有本文中的“用户 ID”或“用户名”,否则无法访问基本信息。

如果必须尝试使用​​以下 url 获取基本信息,则需要 access_token

Facebook

{
   "error": {
      "message": "An active access token must be used to query information about the current user.",
      "type": "OAuthException",
      "code": 2500
   }
}
于 2013-06-11T17:33:40.750 回答