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'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?

share|improve this question

3 Answers

up vote 2 down vote accepted

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

share|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
13  
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

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.

share|improve this answer
1  
Yet the Facebook page itself does exactly this by calling facebook.com/ajax/browser/dialog/page_fans/…. Why them and not us? It's the same data and it's just as visible. This doesn't make sense. – davidbitton May 29 '12 at 0:45
any news about this? – superscral May 31 at 11:45

Its no more possible, thats why FB makes money ;-)

You can try to parse the AJAX call...

share|improve this answer

protected by Community Dec 13 '12 at 5:55

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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