1

I have a user's manage_pages permission and I can access the user's page info.

Is there a way that I can get the list of users who liked this page ?

When I go to /me/likes with the page's access_token I only see the pages who liked this page.

How can I see the regular users who liked it ?

Asaf Nevo
  • 11,338
  • 23
  • 79
  • 154

2 Answers2

0

For privacy reasons, it´s not possible to get a list of all the fans of a Page. You would not be allowed to do anything with the list anyway (send them stuff and whatnot). A user should only be known by an App if that specific user authorized the App.

More information can be found in several other threads about this question:

Community
  • 1
  • 1
andyrandy
  • 72,880
  • 8
  • 113
  • 130
  • Its actually doesnt make sense. If i have the admin token that mean the admin gave it to me and hecan see this list anyhow on facebook. I need it for analytical propses not for spamming :) – Asaf Nevo Dec 24 '14 at 19:46
  • the admin can´t see the whole list, only the last few. and since you would not get any user details (only name and picture), the data would be senseless for analytical stuff. that´s what the insights are for anyway. – andyrandy Dec 24 '14 at 19:57
  • lets agree to disagree on that :) although its only their name and pictures and can be used to different analytical usage. But thanks for the detailed answer :) – Asaf Nevo Dec 25 '14 at 06:18
  • well, using their name and pictures for analytical stuff would not be allowed at all without the permission of the user, that´s all private data ;) – andyrandy Dec 25 '14 at 10:29
0
GET /v8.0/{page-id}/?fields=fan_count HTTP/1.1
Host: graph.facebook.com

https://developers.facebook.com/docs/graph-api/reference/page#public-page-data

Zia
  • 213
  • 1
  • 8