Facebook page apps

  • I have a page
  • I have an application
  • I added the application to the page (even if it does not appear in the list of applications on the page: /)

Is it possible to access the full channel and send messages from the application using GraphAPI with the marker of my application?

I have full access to this page when using my user token.

I am using Koala (in Ruby). Here is the snippet I'm using:

oauth = Koala::Facebook::OAuth.new(FACEBOOK_APP_ID, FACEBOOK_APP_SECRET) token = oauth.get_app_access_token graph = Koala::Facebook::GraphAPI.new(token) pp graph.get_connections(ENTRY_ID, "comments") 

With this, I do not get comments on ENTRY_ID.

+3
source share
1 answer

Your application must be granted "admin" access to the page. More specifically, the "manage_pages" privilege. As the page administrator, you can grant the application the appropriate privileges.

Go to the "Login to the page" section on this page. http://developers.facebook.com/docs/authentication/

+5
source

All Articles