In the official documentation they says :
##################################################
https://developers.facebook.com/docs/permissions/
App Review is required for all permissions except for email and public_profile if your app needs access to data that you do not own or manage
##################################################
From the Graph API Explorer, because I need to get the page access token, I enter :
/me/accounts/
But I got the message "The field 'accounts' is only accessible on the User object after the user grants one of the following permissions: 'pages_show_list'."
My app is in development mode.
So I tried to request this permission when my facebook account is login to the app.
In my Facebook login code, I use :
FB.login(function(response) {
// handle the response }, {scope: 'pages_show_list'});
};
And got this error ""Sorry, something went wrong. We're working on getting this fixed as soon as we can."
Anyway ,my app is in development mode and I logon to the app with my own facebook account, which has administrator role on the app (and which owns the page to where I want to post). So normally, I should even not need to ask for this permission right?
My business verification status is "Verified" already. I have also replied all the questions about Data Handling RGPD.
I don't need my app to be public actually, I just want to make some posts to the FB page that I manage with CURL.
Thanks
As said in the comment, I add to create a new app and select "Business" as app type (it is impossible to change it once the app is created, so you have to create a new one).