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 trying to authenticate users in my facebook app. I'm using the following code:

window.fbAsyncInit = function () {
        FB.Event.subscribe('auth.statusChange', fbIsReady);
        FB.init({ appId: app_id, channelUrl: channelUrl, status: true, cookie: true, xfbml: true, oauth: true});
        FB.Canvas.setAutoGrow();
        FB.Canvas.scrollTo(0, 0);
      };

      (function (d) {
        var js, id = 'facebook-jssdk'; if (d.getElementById(id)) { return; }
        js = d.createElement('script'); js.id = id; js.async = true;
        js.src = "//connect.facebook.net/en_GB/all.js";
        d.getElementsByTagName('head')[0].appendChild(js);
      } (document));


function fbIsReady(res){
  fbReady = 1;
  var params = {method: "oauth", "scope": 'publish_stream'};
  FB.ui(params, isLoggedIn);
}

function isLoggedIn(res){
  if(!res || res.status === 'not_authorized' || res.perms != 'publish_stream')
    fbIsReady();
  else if(res.hasOwnProperty('selected_profiles')){
    FB.api('/me', {access_token: FB.getAccessToken()}, checkUserInfo);
  }
}

function checkUserInfo(){
    console.log(res); // return the error bellow right after the user gives permissions and the expected result after refresh
}

My problem is that after the user authenticates in the app the Access token is not set. I need to refresh the page for it to work. I would think that after the user auths I would be able to perform FB.api('/me'...) but I get:

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

Until I refresh the page. Any idea??

Thanks

share|improve this question
You did not show us, where you call these methods, and what the parameter res is supposed to represent. – CBroe Sep 20 '12 at 10:12
I did. fbIsReady is a callback function. It is defined on the window.fbAsyncInit and when called it contains the response from facebook. The same applies to isLoggedIn function – jribeiro Sep 20 '12 at 13:54
And what is callback in isLoggedIn supposed to be? Btw., normally there should be no need to set the access token yourself – the SDK automatically takes care of that for you in most cases. – CBroe Sep 20 '12 at 14:08
yup. sorry. updated the question – jribeiro Sep 20 '12 at 18:24
FB.getAccessToken is not an officially documented method of the JS SDK. Please try using just FB.api('/me', checkUserInfo), without trying to pass the access token yourself. – CBroe Sep 21 '12 at 10:07
show 1 more comment

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.