skip to Main Content

I need to get the userid of the person who creates the post, and based on the documentation: https://developers.facebook.com/docs/graph-api/reference/v2.9/post#read

This information is in the admin_creator field. Example: {post-id}?fields=admin_creator I am already the admin of the page and manage_pages permission, so I dont understand what is going on… Thanks!

3

Answers


  1. you must be an administrator for the page.

    Login or Signup to reply.
  2. {post-id} must be a scoped id.
    like this : 618683548311391_851244161721994

    Login or Signup to reply.
  3. https://graph.facebook.com/v2.9/{page_id}/posts?fields=admin_creator&access_token={page_access_token}
    

    PS: This endpoint requires an access_token from the page

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search