I have a database that stores a user's access token (along with some other data). My list of permissions include offline_access when I authorize the user.

So will the user's access token (client side) always be the same as that user's access token in the database? Or can the user's access token change when they log out, change their password, etc?

link|improve this question

feedback

2 Answers

up vote 8 down vote accepted

No, the access token will not always be the same, even with offline_access. You will need to get a new access token when 1) the user changes their password or 2) deactivates your app. Otherwise, it should remain the same.

The users Facebook id will never change though. This can be parsed from the access token or obtained by calling the /me graph api.

Facebook has a blog post that goes on in detail about this.

Update: Facebook added a blog post specifically for handling revoked authorization.

link|improve this answer
In my database, I store a high score related to the access token. Since that access token can expire and not be the same as the databases's access token, the user's highscore would be "wiped". Do you have any ideas on how to counter this problem? – Collin Oconnor Jun 1 '11 at 21:30
2  
Easy - just stored it with their facebook user id - that will never change. – OffBySome Jun 1 '11 at 21:31
I totally forgot that users had a user id. So would there be any point in storing the user's access token in a database? – Collin Oconnor Jun 1 '11 at 21:40
2  
You would need to store that token if you want to make calls to Facebook. But you shouldn't ask for permissions like offline_access if you don't actually need them because it increases the chances that the user will reject your application. – OffBySome Jun 1 '11 at 21:49
If and only if you have the offline_access permission. Because when the user user log out, you will not have any ways to get a valid token back. But, the question is now : do you really need the offline_access permission as you are storing user IDs for high scores ? – Quentin Jun 1 '11 at 21:50
show 1 more comment
feedback

Not always.

Access tokens normally will expire after some point in time. There is a way to make an access token with an infinite expire time though, but you need to request for offline_access as one of the permissions.

Look here for more information.

Edit Just saw that you require offline_access as a permission. Then no, they will not expire

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.