I wanna get a list of facebook users who like a page or interest.

FQL like 'SELECT user_id FROM like WHERE object_id=113970468613229' does not work.

Is there a way to do this?

link|improve this question

50% accept rate
feedback

6 Answers

I am Partner Engineer at Facebook so I thought I'd chime in here. The Facebook APIs will not give you the user ID of users who have liked a page or interest, this is to guard the privacy of those users.

link|improve this answer
how about the actual NAME of the users? – Developer Dec 29 '11 at 22:38
feedback

It isn't possible to get the ids of users who like your page unfortunately.

You can use the like box to show a facepile of users who like your page. And as haha said you can detect if one user likes a page.

For the likebox/facepile option check out the docs at: Likebox

link|improve this answer
feedback

There is no way to get a list of people that like your page via their API, which is why this question never got answered. You can get charts and aggregate information about who like your page from Facebook Insights but it is not personally identifiable information like their user id.

You can see the most recent 500 users that have like your page by going to: https://www.facebook.com/browse/?type=page_fans&page_id=your page id but you would have to scrape this to get the information and it won't work for more people besides the most recent 500.

link|improve this answer
feedback

According to the facebook api that is exactly how you do it. Except it says you should have quotes around your object_id.

The example says:

$facebook->api_client->fql_query('SELECT user_id FROM like WHERE object_id="122706168308"');

http://developers.facebook.com/docs/reference/fql/like

link|improve this answer
Quotes do not help. – OmniBus Aug 23 '10 at 10:03
feedback

The FQL docs have been updated to clarify this limitation: https://developers.facebook.com/docs/reference/fql/like/

link|improve this answer
feedback

With Facebook PHP-SDK you can use this

if($me) {
$youlikeit =  $facebook->api(array(
    "method" => "fql.query",
    "query"  => "select uid from page_fan where uid=me() and page_id=113970468613229"
));
}
$youlikeit = sizeof($youlikeit) == 1 ? true : false;
link|improve this answer
omg asked 7 months ago.. lol – haha Apr 17 '11 at 16:17
Never mind. It can only check the user is on the user list of a page, not get the user list of a page. – OmniBus Apr 20 '11 at 8:27
feedback

protected by Community Apr 24 at 2:58

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.