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.

My company has a corporate facebook account where they post event pics in different albums. My requirement is to get all the photos from facebook albums and show in our corporate website. I am able to fetch the photos but the user access token is valid only for 60 days which means every other two months i will have to login into company's corporate facebook account, regenerate the token and update the token in my application.

Is there any way to generate to permanent access token ? or is ther any way to regenerate the token at my application level ( without showing login dialog box) ?

is there any other way to fetch the photos without creating app ?

thanks

share|improve this question

1 Answer

Shouldn't you be able to use the Page access token for the Facebook page itself? have one of the admins grant your app manage_pages permission, and then use the page access token to retrieve the photos from the page - the page access token won't expire if retrieved via the server side oauth process

There's a detailed guide to logging in as a page in the developer documentation -

share|improve this answer
I tried Page Access tokens too. Page access token also have 60 days expiration – user2070392 Feb 14 at 20:15
Not if you retrieve the page access token using a 60 day token for the page admin which was retrieved from the server side oauth process, it should be infinite then – Igy Feb 14 at 21:21
If you can reliably repro that not returning an infinite length page access token you should file a bug report – Igy Feb 14 at 23:30
I followed following steps: facebook.com/dialog/…; I got code from this API call. Then I got token as follows : graph.facebook.com/oauth/…; I verified the token using Access token Debugger. Token is valid for 60 days. To get page token, i used url: graph.facebook.com/me/accounts?access_token=<ACCESS_TOKEN>; I got token for my app page. I verified this token in tool, Its valid only for 60 days. – user2070392 Feb 14 at 23:33
Please let me know if i ma following right steps to get the token. Thanks for your help "Igy" – user2070392 Feb 14 at 23:34

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.