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 created an APP on Facebook and using graph API explorer, I selected my app from app drop down box, requested access token with manage_pages, offline_access and publish_stream permissions.

Using this access token, I was successfully able to post message on page using restfb APIs but when I log out, it starts throwing The session is invalid error.

I read on few posts that offline_access is deprecated. Could someone tell me how to obtain permanent access token?

Thanks

share|improve this question
This is little weird. I get access token by clicking on Get Access Token and then selecting offline_access, manage_permissions, publish_stream. But when I again try to Get Access Token, All other permissions except offline_access are checked while my previous access token should have made it checked. – Jitendra Apr 6 '12 at 23:42

2 Answers

up vote 5 down vote accepted

Looking at the docs at: https://developers.facebook.com/roadmap/offline-access-removal/ this is no longer possible.

Desktop applications will not be able to extend the life of an existing access_token and the user must login to facebook once the token has expired.

Otherwise, it is possible to request an access token with a longer expiration. Here are the directions: https://developers.facebook.com/roadmap/offline-access-removal/#extend_token

share|improve this answer

you will not get any permanent access token as Facebook developer blog explains. you will be given 60 days long lived access token. Before the expiration Facebook will notify you about the expiry and then you can renew it or you can build your own custom control to get the notification on token expiration which you can fetch from Facebook API.

share|improve this answer

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.