- I own a page
- I own an application
- I added the application on the page (even though it does not appear on the application list of the page :/)
Is it possible to access the page's full feed and post messages from the application using the GraphAPI with the token of my application ?
I have full access to this page when using my user's token though.
I'm using Koala (in Ruby). Here's 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 all the comments on the ENTRY_ID.