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.

Possible Duplicate:
Get long live access token from Facebook

I've been working on a service which uses facebook graph api . I've seen that the permanent api token doesn't exist anymore , and that means I have to get a new API token every time a user is using my service. I'd like to know if there's an option to get a "long-term" access token , and how exactly i'm able to "pull" a new access token every time i need one.

Thanks

share|improve this question

marked as duplicate by ThiefMaster Jul 19 '12 at 19:40

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

unless I missed out on recent changes, I think the access token (though not permanent) is long-lived and expires under certain conditions (such as user logging out, user changing pwd, user changing access levels for the app etc.). Following URL is a good read to handle such token expirations:

https://developers.facebook.com/docs/authentication/access-token-expiration/

If the user authenticates through your service again, you'll get a new access token. I am also assuming you are talking about user access tokens and not application ID's

share|improve this answer
I'm talking about tokens which allow me pulling public posts by searching query – Itamar Jul 18 '12 at 20:29

Not the answer you're looking for? Browse other questions tagged or ask your own question.