0

使っています

 FB.login(function(response) {
   if (response.authResponse) {
     console.log('Welcome!  Fetching your information.... ');
     var access_token =   FB.getAuthResponse()['accessToken'];
     window.location = "https://graph.facebook.com/me?"+access_token;
   }
 });

これにより、次の結果にリダイレクトされます。

{
  "error": {
  "message": "An active access token must be used to query information about the current user.",
  "type": "OAuthException",
  "code": 2500
  }
}

私はここで何が間違っているのですか?適切なアクセストークンを取得できないのはなぜですか?

4

1 に答える 1

1

を使用できるはずですresponse.authResponse.accessToken

access_tokenまた、変数をGraphリクエスト に追加する必要があります。https://graph.facebook.com/me?access_token=YOUR_TOKEN

于 2012-09-12T12:08:45.347 に答える