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.

Is there an API end point to get the information available here?

I would like to be able to check in code when the access token expires.

share|improve this question
possible duplicate of How do I check when a fb-token will expire – CBroe Aug 28 '12 at 14:52

1 Answer

There is no specific end point to check access_tokens, instead you can call /me using the access_token you have until it returns an error.

share|improve this answer
Thanks - That doesn't tell me when it expires though if I understand you correctly, just lets me know the point at which it expires which any other calls with the access token would also do. – chrisb Aug 29 '12 at 16:26
Exactly. You can only find out when it expires if you make a note of the expiration time in the signed_request your app gets from Facebook. This time is updated whenever you get a new access token. – Niraj Shah Aug 30 '12 at 7:20
Thanks for your response. – chrisb Aug 31 '12 at 9:10

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.