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.

Possible Duplicate:
Facebook Graph Api - Posting to Fan Page as an Admin

I made website where I basically get news feeds from my fan page. And now I'm trying to do opposite. Is there a way to update own facebook fan page from my website ? I know that there is a way to upload statuses etc to facebook profile but can I do the same with my facebook fan page? If yes I would appreciate someone to put me on right track.

share|improve this question
1  
yes you can stackoverflow.com/questions/3627684/… – Rufinus Jul 29 '11 at 13:08

marked as duplicate by karim79, marc_s, Eugene Mayevski 'EldoS Corp, Abizern, Bo Persson Jul 31 '11 at 21:09

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

If you want to post AS your Facebook Page, then you first need a user access token with the manage_pages permission, for a user who is an admin of that page.

Make a request to https://graph.facebook.com/me/accounts - this will return a list of the pages which you are an admin of, and an access token for each. The access_token field is only returned if you have the manage_pages permission.

Try this with the Graph Explorer here: https://developers.facebook.com/tools/explorer/?method=GET&path=me/accounts - you will need to hit 'Get Access Token' and grant the extended permission 'manage_pages'.

You now need to use the access token returned for the page you want to post as, and make a POST to https://graph.facebook.com/me/feed - in this call 'me' is the page, as you are using a page access_token.

Here are the available fields for the Post object: https://developers.facebook.com/docs/reference/api/post/

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.