Skip to content Skip to sidebar Skip to footer

How Can I Post As A Facebook Page Using Api Now That Publish_actions Permission Has Been Deprecated? (since April 24, 2018)

I've read several tutorials on how to make a Facebook post via Python API. Documentation on this link states that - As of April 24,2018, the pubish_actions permission has been rem

Solution 1:

You'll need to look into the newer API and permissions manage_pages and publish_pages which you can see in the docs here.

You need both these permissions to post as a page. Also you need to go through an app review process to get these permissions which is detailed on the pages docs.

Edit to answer additional question in comments: As it says in the linked docs, the tokens expire after an hour and you must request a new one. See bottom of tokens page.

Post a Comment for "How Can I Post As A Facebook Page Using Api Now That Publish_actions Permission Has Been Deprecated? (since April 24, 2018)"