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 am using JSON to retrieve Facebook album to create a gallery.

As the gallery is not public so I use access token which works perfect but it expires after a while.

I would like to know is it possible to get permanent access token?

This is how I retrieved json

https://graph.facebook.com/346138265459638/photos?access_token=AAACEdEose0cBAHjZCqytFok9nvE9ubvpQNS1RWZANIjTz3aYUnIC7bVsvOL8idm9BQRCR3y7L5XRLWtpkekqMSpoVZCOZCWpNccY6ag2K8AFHu9kBQXZC 

This is what I got some information from but I could not figure out.

http://developers.facebook.com/docs/authentication/client-side/
share|improve this question
If what you're looking for is a non-expiring page access token, I just got this worked out over here: stackoverflow.com/questions/12168452/… – redhotvengeance Aug 29 '12 at 1:19
You can get a non-expiring page access token, but user access tokens are valid for 60-days maximum. – Donn Lee Aug 29 '12 at 2:10
how to get non-expiring token? – Dips Aug 29 '12 at 3:05

1 Answer

So, if you are trying to do this for a user photo album, there is no such thing as non-expiring access tokens. If you are trying to do this for a page, there are non-expiring tokens, but you need to retrieve a long-lived one from the user first, then request one for the page...

The documentation to do all of this is located here: https://developers.facebook.com/docs/howtos/login/extending-tokens/

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.