根据 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);
});
}