Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I use the js sdk to get a list of my friends with no problem. The list I get is from my facebook personal page (Tony Easterbird)

I alse have a fan type page, called Katahdin Sheep. I want to get a list of people who like this page. (Katahdin Sheep).

the appID is the same for both pages, so I am a little confused on how to get the list.

If have tried:

   FB.api('me/KatahdinSheep', function(response){... etc

and also:

   FB.api ('Katahdin.Sheep', function(response){ ... etc

Can you please steer me in the right direction? Your help is truly appreciated.

Tony

share|improve this question
possible duplicate of Querying Users who 'like' my Facebook Page – Igy Jun 10 '12 at 20:10

1 Answer

I don't believe you can retrieve a list of users by a page_id (using the API).
I believe the only thing you can do is test a specific user_id against a page_id to see if that user has already liked your page.

Through the Facebook website, you can see exactly who has liked your page but I believe Facebook has limited the API in this way to prevent data mining by applications.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.