Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

As I understand it, this is the basic process for new Facebook iframe canvas apps using the OAuth2 API in a nutshell:

  1. Redirect to (or have user click link to) app's authorization URL
  2. User authorizes and is redirected to your callback URL
  3. Callback uses "code" parameter to get a access token
  4. Access token is used with Graph API to pull or push information

The problem is that access tokens expire relatively quickly and need to be "refreshed", so my questions are 1) how do you detect that the token has expired aside from trying to use it and simply getting an error? and 2) what is the best practice for obtaining a new token?

Currently, I just detect that there was an error trying to get the user's information with their access token, then redirect to the authorization URL again -- since they already authorized the app a blank page flashes by and they are redirected back to my app callback where I get a fresh token. It's so clunky I can't believe this is the proper method.

Note: this question may be similar to or the same as how to refresh an oauth token when using the Facebook iPhone SDK, but I am not using iOS SDK for iPhone, just a regular web application with iframe.

share|improve this question

3 Answers

up vote 14 down vote accepted

1) the only way to tell if a cookie is valid is to use it and catch the error if it is expired. There is no polling method or anything to check if a token is valid.

2) To get a new token, simply redirect the user to the authentication page again. Because they have already authorized your app they will instantly be redirected back to your app and you will have a new token. They won't be prompted to allow since they have already done that.

In short, there are not tricks to this. You are already doing it correctly.

share|improve this answer
I suspected this was the answer but I felt it was important to post this question and get some responses. There are many duplicate posts about access token expiration and iframe issues, but no one asking about this specific issue that the Facebook docs gloss over. I'll give you the nod for best answer after a day or two to let people chime in, thanks. – Mike Johnson Jan 8 '11 at 17:25
But what happens if your app or game needs to make repeated facebook API calls, for example from Javascript or Flash? You can't expect the user to be forced to reload your app every hour, at potentially critical moments in the game? – Toxikman Oct 6 '11 at 21:27
1  
I know this is a little old so it may not even matter now, but you can use the facebook Status URL (from the Facebook API to get the status of a session) – qodeninja Oct 30 '11 at 23:53
@Toxikman it only matters when the app tries to access Facebook information for the user, and I have never seen a game that needs to repeatedly/rapidly access the Facebook API -- whatever your app is requesting so frequently, you might want to consider saving in a temporary cache. – Mike Johnson Jan 25 '12 at 0:00
It kinda stinks for "offline" use... What if a user hasn't logged in to your app in some time? Yet you still need their token to perform actions on their behalf? They should not have done away with this type of access (or phase it out, I think there's a radio button in the app settings to still use it). Speaking of all the options and changes and backwards compatibility stuff - their API is such a joke. BUT.. in the meantime, you can check that "offline access" option too and you won't need to refresh. – Tom May 30 '12 at 15:25

Recently, facebook has made some changes to access tokens which allows them to be refreshed periodically.

https://graph.facebook.com/oauth/access_token?
client_id=APP_ID&
client_secret=APP_SECRET&
grant_type=fb_exchange_token&
fb_exchange_token=EXISTING_ACCESS_TOKEN 

For more details, check here: https://developers.facebook.com/docs/offline-access-deprecation/

share|improve this answer
1  
but seem like it is only helpful for new app with short lived tokens. For the existing app which uses long lived token,it is not helpful. [you pass an access_token that had a long-lived expiration time, the endpoint will simply pass that same access_token back to you without altering or extending the expiration time.] – kitokid May 11 '12 at 3:22
Yes, that is a bit of a pain. You can only get access tokens for at most 60 days. – logan May 11 '12 at 22:31

if user has already authorized your application and access token expired. you can redirect user to authentication page again. but oauth dialog doestn't show because user already authorized your application. he will redirect to redirect_url parameter you used.

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.