I'm trying to get a list of all my Facebook Page Fans.

All I can get from FQL is the total amount of fans for my facebook page. I can't know WHO my fans are?

I have tried this:

https://graph.facebook.com/somepage

Anyone with an idea of how to know WHO my fans are? I.e. list the User IDs of all my fans for a specific page?

I also know that I can get more information about my fanpage using FQL and "insights", from there I can get "page_active_users" and so forth, but not a list of all my fans?

I know that Facebook doesn't support this (in public), but any ideas on how to get around it?

link|improve this question

58% accept rate
feedback

2 Answers

up vote 1 down vote accepted

https://graph.facebook.com/[PAGEID]/members?limit=500&access_token=[oauthtoken]

link|improve this answer
It's those who liked it, not fans. – serg Aug 24 '10 at 20:38
You are the king! Do you know if there is a limit to how many members you can get at a time? Since Coca Cola have 11 million fans =) – Erik Lydecker Aug 24 '10 at 20:56
@serg well isn't that the same thing at Facebook? What's the difference between "fans" and "likers"? – Erik Lydecker Aug 24 '10 at 20:57
@Erik Well there are two entities: likes (developers.facebook.com/docs/reference/fql/like) and fans (developers.facebook.com/docs/reference/fql/page_fan). You can get likes by pageid but you can't get fans by pageid (can only check if some particular user is fan or not). Also there is 5000 limit on everything. – serg Aug 24 '10 at 21:03
12  
Doesn't work any longer, I get "Your statement is not indexable. The WHERE clause must contain an indexable column." – Bemmu Jun 13 '11 at 4:41
show 3 more comments
feedback

Its not possible to get the UIDs of the users who have liked your page.

The UIDs of users are only available to third parties if the user performs a public action (post, comment or like on your page's feed), or if they auth an application.

This is why you can't query FQL with a page ID and get UIDs.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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