I'm trying to post to my business facebook pages through a desktop application (vb.net). The app is used by myself to update some text to be published on a digital signage TV (this works fine) and also automatically publish the text to my FB Page.
I used the Graph API Explorer to generate the app user access token (with manage_pages and publish_pages permission) and a page access token for the app.
Using FB's Access Token Debugger I was able to generate a never expiring Page Access Token. I also see that the scopes for it are: manage_pages, pages_show_list, publish_pages, public_profile
In "Development mode" I'm able to POST successfully to the business page by simply using the URL:
In "Live" mode unfortunately the above POST request returns the error:
message: (#200) Requires either publish_actions permission, or manage_pages and publish_pages as an admin with sufficient administrative permission" type:"OAuthException" code:200
My questions:
- Is there something I'm missing to the get the app "LIVE" with appropriate access permissions to publish?
- How can I avoid FB review (I'm the administrator of the app and also the administrator of the business page)?