views:

39

answers:

1

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?

+1  A: 

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

gautema
Quotes do not help.
OmniBus

related questions