Posting to Facebook Page Wall - Using Graph API?

I want to post in the wall of a Facebook fan page from a python / django web application.

The new graphical API looks beautiful and simple, so I would like to use it. If there is a much simpler way :-) I assume that the pyFacebook package will want, I want, but it seems to use the old interface for relaxing. pyFacebook is probably a complete overkill for something that I could only do in a few lines of code using the Graph APIs.

Looking at the new Graph API, it seems like it should be very simple. I have created an application, and I can publish it on the application wall without any problems. However, my application does not have permission to publish on my page. Any tips on how to enable this permission? Or is there a much better way to do this?

Do I even need my own application to do this, or is there one that I can already use?

+4
source share
1 answer

If your fan page allows wall posts from any user in the settings, your application should only be able to send messages to <page_id>/feed

If you are an administrator of the admin page and want to publish fan pages on the wall on behalf of the page itself (without showing your name), read about it here or in more detail here .

+6
source

All Articles