I have been working with Facebook OAuth 2.0 using JavaScript SDK. I saw that Facebook has recently changed the "infinite" expiration time access token feature and now one has gets an Access token for offline access which is valid only for 60 days maximum.
I tried the following code:
FB.init({appId: 'XXXXXXXXXXXX', oauth: true , secret: 'XXXXXXXXXXXXXXXXXXXXXXXXX' });
// the real values of appId and secret are not displayed for obv reasons
FB.login(function(response)
{
if(response.authResponse){
}
else{
console.log('User cancelled login or did not fully authorize.');
}
}, {scope: 'read_stream,publish_stream,offline_access'});
In my response: response.authResponse, I receive an access token and a value : expiresIn which is more or less around 6000. I don't understand what this value signifies. if I divide it by 3600, I would say it gives me around 2 hours of validity which means this is not an access token with infinite expiration time. Is there a way I can request for an access token with longer validity? Kindly let me know what I am doing wrong.