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
resis supposed to represent. – CBroe Sep 20 '12 at 10:12callbackinisLoggedInsupposed 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:08FB.getAccessTokenis not an officially documented method of the JS SDK. Please try using justFB.api('/me', checkUserInfo), without trying to pass the access token yourself. – CBroe Sep 21 '12 at 10:07