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?
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?
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"');