Hi,
I'm in the Graph API and I want to test first my script with a page test.
I want to post a message on my test page.
I'm using the app token, the test user access token and the page id correctly.
Facebook is asking me to have specific permission.
Are they asking me review my App ? I normally don't needed it if I have the status : "In Development", right ?
This is error I get after running :
`
import facebook
graph = facebook.GraphAPI(access_token=user_access_token)
graph.put_object(parent_object=page_id, connection_name='feed',
message='Hello, world from MBP')
`
Error :
`facebook.GraphAPIError: (#200) Requires either publish_to_groups permission and app being installed in the group, or manage_pages and publish_pages as an admin with sufficient administrative permission`
Thank you for your time,
Thomak