- 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.
source share