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 am a little confused about calculating the time until the access token expires.

I am using server authentication (http://developers.facebook.com/docs/authentication/server-side/).

When I get the authentication code from the Facebook's request to my redirect URL, I send an authentication request back to Facebook and I get the access token along with 'expires' parameters, lately I could see that the expires is a long value that represents the time in seconds until the token expires. For some reason I think it used to be time in miliseconds.

Can I assume that the expiration time is now + expires (in seconds) - it seems to me too long (about ~5109691 seconds) - does it make sense?

Thank you for your help.

share|improve this question
Access token is supposed to be active for about half an hour. And for all operations temporary tokens are enough. What actually you want to do using FB API? – zerkms Apr 16 '12 at 12:00

1 Answer

Server authenticated access tokens are valid for two months. The value you are receiving is correct.

Edit: https://developers.facebook.com/roadmap/offline-access-removal/

Read the 'Server-side OAuth Developers' section.

share|improve this answer
Thank you very much for the quick response – Jessica Cowen Apr 16 '12 at 13:34
@JessicaCowen please accept answer if you think it is correct. – lulalala Jul 27 '12 at 2:52

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.