Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Cannot create Page with test users

I created some test users for a test app on my Facebook developer account. I would like these test users to be able to create Facebook Pages. When I try to do that, I get the following error message:

This content is no longer available The content you requested cannot be displayed at the moment. It may be temporarily unavailable, the link you clicked on may have expired or you may not have permission to view this page.

Is creating Facebook Page something test users can no longer do with the latest FB Graph 2.3 update?

like image 571
Sammy Avatar asked Apr 09 '15 10:04

Sammy


1 Answers

Until Facebook fix this feature on their front end, you can use the API as a workaround:

Begin by creating a new Facebook Test User:

enter image description here

Give permission to your app to "manage_pages" for this test user (see screenshot). Get an access token for that user, and use this token to create a page using the API. If you've never used the Page API, the following Graph API Explorer might help with that (make sure to use the access token for the test user)

Edit: my previous graph API wasn't working when I tried this again, here is another version one of our Q&A team found, that should work.

https://developers.facebook.com/tools/explorer?method=POST&path=me%2Faccounts&version=v3.0&name=Bob%20Test%20Page%201&category=756092301147942&about=Bob%20test&picture=https%3A%2F%2Fbowwowinsurance.com.au%2Fwp-content%2Fuploads%2F2014%2F12%2Ffrench-bulldog-frenchie-700x700.jpg&cover_photo=%7B%22url%22%3A%22https%3A%2F%2Fbowwowinsurance.com.au%2Fwp-content%2Fuploads%2F2014%2F12%2Ffrench-bulldog-frenchie-700x700.jpg%22%7D

Good luck; Facebook's API platforms seem really bugged right now.

like image 60
Lunster Avatar answered Nov 11 '22 23:11

Lunster