I'm trying to publish on a page throught FB API (with curl), I give this commande with post method to curl : https://graph.facebook.com/my_Page_Id/feed?message=Helloworld!&access_token=MY_PAGE_TOKEN
I get the following error code :
[message] => (#200) If posting to a group, requires app being installed in the group, and \
either publish_to_groups permission with user token, or both pages_read_engagement \
and pages_manage_posts permission with page token; If posting to a page, \
requires both pages_read_engagement and pages_manage_posts as an admin with \
sufficient administrative permission
[type] => OAuthException
[code] => 200
[fbtrace_id] => probably not necessary
)
If I entry this URL into my browser, i get an empty JSon string just like following. But the post isn't sent too.
{
"data": [
]
}
My app is not reviewed, but it still in dev mode. So if i understand the doc well, it's supposed to don't require these permissions...