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.

How can I (programatically, duh!) post on my page on facebook? I'm talking about an actual Page in the sense of the Facebook API, e.g. like this.

I read my way through most of the Graph API, but I can't really come to grips of which endpoint to use in order to post something.

I already roughly know how to get my authentication, but when I want to access my page through the graph API, it just returns false.

share|improve this question

1 Answer

up vote 0 down vote accepted

You need to get access_token for the page - read this on how to get the right access_token (just change the permissions to what you need) - Facebook: post image and description to wall and in page album via php

once you have the right token you post the same way as to any user's feed, e.g. https://graph.facebook.com/<page_id>/feed

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.