I need to get the access token from FB.login method in javascript SDK. my login code is

FB.login(function(response) {
                  if (response.session) {
                    if (response.perms) {

                    } else {
                      // user is logged in, but did not grant any permissions
                      alert("No Permission..");

                    }
                  } else {
                    // user is not logged in
                    alert("Please login to facebook");

                  }
                }, {perms:'read_stream,publish_stream,offline_access'});

is there any way to get access token??I am able to get the access token using PHP.

Thanks in advance....

link|improve this question

feedback

3 Answers

up vote 29 down vote accepted

You can get access token using response.session.access_token:

FB.login(function(response) {
   if (response.authResponse) {
     var access_token =   FB.getAuthResponse()['accessToken'];
     console.log('Access Token = '+ access_token);
     FB.api('/me', function(response) {
     console.log('Good to see you, ' + response.name + '.');
     });
   } else {
     console.log('User cancelled login or did not fully authorize.');
   }
 }, {scope: ''});

Edit: Updated to use Oauth 2.0, required since December 2011. Now uses FB.getAuthResoponse(); If you are using a browser that does not have a console, (I'm talking to you, Internet Explorer) be sure to comment out the console.log lines or use a log-failsafe script such as:

if (typeof(console) == "undefined") { console = {}; } 
if (typeof(console.log) == "undefined") { console.log = function() { return 0; } }
link|improve this answer
11  
There has been a change to the Facebook API that could break this code. If you use Oauth 2.0, Now the access token is response.authResponse.accessToken. – Plastic Sturgeon Aug 3 '11 at 23:08
4  
Yeah, also you should not use "if (response.session)" it should be replaced with "if (response.authResponse)" (line #2) – jitbit Sep 28 '11 at 9:08
Not working @PlasticSturgeon – No One Feb 3 at 12:52
Thanks @No One. I updated the post for the latest facebook API. – Plastic Sturgeon Feb 3 at 17:44
feedback

response.session.access_token doesn't work in my code. But this works: response.authResponse.accessToken

     FB.login(function(response) { alert(response.authResponse.accessToken);
     }, {perms:'read_stream,publish_stream,offline_access'});
link|improve this answer
feedback

response.session doesn't work anymore because response.authResponse is the new way to access the response content after the oauth migration.
Check this for details: SDKs & Tools › JavaScript SDK › FB.login

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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