I have several Facebook pages, to manage them all (publish photo or generally post as the page), I’ve created a simple script in python which needs the Page ID and the Access Token.
To get the Access Token I need to make a Facebook app.
I’m able to publish on my facebook pages using the access token taken from https://developers.facebook.com/tools/explorer/.
The problem is that if I don’t set the app status to live, the post on the FB Page are not visible.
If I change the app status to live, I no longer have the permission required to publish, because I need to submit the app for review, but the script that I created doesn’t fall in any of the categories listed; i.e. Facebook Web Games, Website, iOS, etc.
So my questions are:
-
How do I make visible to the public the posts made by the app,
leaving the app status as “In Development”? -
Is there a way to publish to a FB Page, without the need to create an
app on FB?
2
Answers
If you are personally an admin of the pages, then using your personal user access token, you can request a page access token via the API. Then use that to do the operation.
https://developers.facebook.com/docs/pages/access-tokens/#page-access-tokens
when you turn your app live , the old invisible posts will be public .