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.

While doing an integration Facebook feeds using API Graph, using PHP language, to get the latest post from the wall of Facebook account (like latest Tweets on Twitter), an application should be created and a client_id and secret_key with an access_token are required also. Everything goes right. I use the API Graph and I get the latest post from an account profile, but after one hour, no posts can be displayed yet. (Error: access_token has expired). The question is, how can I re-generate a new access_token when the older is expired (it's not logic to do that manually every time )? or can I get the latest feeds posted on Facebook wall without the access_token? The function exist into the page below is not working properly:

http://developers.facebook.com/blog/post/2011/05/13/how-to--handle-expired-access-tokens/ 
share|improve this question

2 Answers

up vote 1 down vote accepted

To generate a new access token, have your PHP script read the contents of: https://graph.facebook.com/oauth/access_token?client_id=APP_ID_HERE&client_secret=APP_SECRET_HERE&grant_type=client_credentials

This will return a JSON object with a new client token, assuming that the user has authorized the application.

share|improve this answer
thank you. that's work good. – Mouhamad Ounayssi - DIGITALITS Aug 30 '12 at 18:28

http://developers.facebook.com/roadmap/offline-access-removal/ Read Scenario 4 to get an extended life token

share|improve this answer
thank you for your answer. I have checked it. – Mouhamad Ounayssi - DIGITALITS Aug 30 '12 at 18:32

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.