I want to write a small personal app (not necessary public) for my own use which will read out Posts from public fanpages. Anything works so far, i'm able to log in and here's my code snippet for retrieving the posts:
$pageposts = $fb->get('/'.$page_id.'/posts', $token);
foreach ($pageposts["data"] as $fppost) {
echo $fppost['message'];
}
which is giving me this error:
This endpoint requires the 'pages_read_engagement' permission or the 'Page Public Content Access' feature
I added pages_read_engagement
to my login permissions and found out i need to verify my page first for getting that permission.
So i filled out the verification form and submitted it and it was not approved (answer was in german, i translated it):
Not Approved: Access to public content from pages
App verification feedback
It looks like your app isn't quite finished yet. In order for us to test and approve your app, it must be fully functional and reflect the final user experience.
Access to public content from Feedback pages
We have determined that your app's use case is invalid for this entitlement - or is not required to support core app functionality. You can find more information about the use cases that we allow on our “Authorization Reference” and “Features” pages.
Ok .. how can i show the full user experience without getting that pages_read_engagement
permission?
Or did i miss something / do something wrong?