Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using

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

Which redirects me to the following results:

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

What am I doing wrong here? Why am I not getting the proper access token?

share|improve this question

1 Answer

up vote 1 down vote accepted

You should just be able to use response.authResponse.accessToken.

Also, you need to append the access_token variable to the Graph request: https://graph.facebook.com/me?access_token=YOUR_TOKEN

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.