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'd like to get a list of users who like a certain page or a fan of it.

The FB API documentation states that you can only get the count of the fans of a certain page using the social graph, but not a list of the fans.

A discussion here http://stackoverflow.com/questions/2001281/retrieve-facebook-fan-names suggests that one could use an FQL query like 'SELECT user_id FROM like WHERE object_id="YOUR PAGE ID"' to get the number of people who liked the page, but for the same page, it gives an empty response "{}".

So I was wondering if anyone has an idea if this can be done.

Thanks!

share|improve this question
You can only get the fans of pages that you are an administrator for. So you have to provide an access token with your request associated with an admin account of the page you are trying to get the fans. – Nathan Totten Oct 26 '10 at 4:00
I see. That makes sense. Thanks for the answer! – pesho Oct 26 '10 at 7:32
how? 2 years later I still don't see a way? – Dmitry Beransky Aug 3 '12 at 16:28

5 Answers

There is a "way" to get some part of fan list with their profile ids of some fanpage without token.

  1. Get id of a fanpage with public graph data: http://graph.facebook.com/cocacola - Coca-Cola has 40796308305.
  2. Get Coca-Cola's "like plugin" iframe display directly with some modified params: http://www.facebook.com/plugins/fan.php?connections=100&id=40796308305
  3. Now check the page sources, there are a lot of fans with links to their profiles, where you can find their profile ids or nicknames like: http://www.facebook.com/michal.semeniuk .
  4. If you are interested only in profile ids use the graph api again - it will give you profile id directly: http://graph.facebook.com/michal.semeniuk .

And now is the best part: try to refresh (F5) the link in point 2.. There is a new full set of another fans of Coca-Cola. Take only uniques and you will be able to get some nice, almost full list of fans.

share|improve this answer
1  
How to get it through Graph api or fql ? I guess there is no way we can get profile name who liked the page. – Sanket Jul 11 '12 at 5:43
Where did you find out about this like plugin ? – James Poulson Sep 29 '12 at 4:23
@Sanket point 4. gives you my first and last name. – s3m3n Oct 25 '12 at 15:23
1  
@JamesPoulson it's official FB like plugin to embed on external webpages, there is even generator: developers.facebook.com/docs/reference/plugins/like-box – s3m3n Oct 25 '12 at 15:26
your second link is not working now when i tried – Matical Mar 31 at 22:57
show 2 more comments

This page https://developers.facebook.com/docs/reference/fql/like/ wrote, you can't get fan list.

"The Post, Video, Note, Link, Photo and Album Graph API objects contain an equivalent connection called likes."

share|improve this answer

Use this.

https://www.facebook.com/browse/?type=page_fans&page_id=<your page id>

It will return up to 500 of the most recent likes.

http://www.facebook.com/browse/?type=page_fans&page_id=<your page id>&start=400

Each page will give you 100 fans. Change start value to (0, 100, 200, 300, 400) to get the first 500. If start is >= 401, the page will be blank :(

share|improve this answer

You can get fans using new facebook search: https://www.facebook.com/search/321770180859/likers?ref=about

share|improve this answer

Facebook's FQL documentation here tells you how to do it. Run the example SELECT name, fan_count FROM page WHERE page_id = 19292868552 and replace the page_id number with your page's id number and it will return the page name and the fan count.

share|improve this answer
3  
Read the question. This returns the page name and number of likes... – Jasper Kennis Mar 15 '12 at 11:43
He's asking how to get the list of users who have liked a page. – Wes Gamble Jan 16 at 23:00

protected by Cody Gray Mar 6 '11 at 9:05

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.