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.

Do you have any idea on how I can get the page access token when I have the application access token of and application that has autorizations to access all data of the user who owns that page?

(I'm using php)

Thanks

share|improve this question

1 Answer

up vote 0 down vote accepted

This isn't possible, you need a user access token to access /me/acccounts.

share|improve this answer
That means that if I have an application that has access to a page, I can't write code to post a message in that page if I'm not logged-in to facebook? – simoha Oct 13 '12 at 15:02
@simoha you can, you just need a page or user token instead. An App access token will not work for pages – phwd Oct 13 '12 at 15:31
But the problem is that page token expires (application access token doesn't), my script will be running on server without human interaction... (For information I can do a post to a user profile page using application access token, but when I try to post to a facebook page that belongs to that user I can't...) – simoha Oct 13 '12 at 15:35
@simoha the page access token only invalidates based on conditions of the user, it doesn't expire. Also an App Access Token can only be used for posting to a user profile. It is not supported for pages and there is no workaround for it. – phwd Oct 13 '12 at 15:52

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.