Possible Duplicate:
Post on a Facebook wall as Page, not as user
Can facebook apps publish on behalf of pages like they do with user statuses?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You most certainly can! Just be sure to use the appropriate
access_token. You’ll need to authenticate as a page to get this. The documentation explains it best but basically, the administrator of the page must first grant the application themanage_pagespermission, once you have this permission, your application will be able to make an API call to/me/accountsto get a list of all the pages that user administers and their appropriate access tokens.With your shiny new page access token, making calls to the API is just the same as it would be for a user –
https://graph.facebook.com/PAGE_ID/feed?access_token=PAGE_ACCESS_TOKEN&message=Hello Page World!