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 have a Facebook app that handles most interactions with Facebook on the client side, however, I need to eventually post to the user's wall while the user is offline. I am currently storing the user's id and access token but I'm lost on how to renew the access token.

I assume it would be just a question of calling a graph method passing my app is, secret and the user id to get a new access token since the user has previously given the app all the necessary permissions but I can't seem to find anything like this on the docs. Am I taking the correct approach here or is there something else I should do in order to post as the offline user?

Thank you

share|improve this question
1  
I'm not familiar with the facebook API, but you should store a refresh token instead of an access token. An access token expires and cannot be renewed, the refresh token is used to query a new access token instead. See the OAuth 2 specification for a sample token refresh request/response message. – Zólyomi István Jul 19 '12 at 16:56

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.