tags:

views:

173

answers:

1

Hi,

Using the Facebook API with the FQL language, how can I get a list of the users that liked a given URL? I got the URL and want to query Facebook to see how many people and what users liked that URL.

Using PHP or ASP.Net... doesn't matter, just want to know how to write the FQL query.

A: 
'SELECT user_id FROM like WHERE object_id IN (SELECT link_id from link WHERE url = 'YOUR URL HERE' AND owner = 'YOUR USER ID HERE' '

Like FQL Table

Link FQL table

vodkhang
Not working, i choose that I liked an item but it doesn't get assigned to my name.
Lennie De Villiers
uhm... so strange, could you separate the fql and try to get the object id first, then user that object id in the select like fql? I think it may because the string and int.
vodkhang
I also posted 2 fql table so that you can look at it. I will try the sql myself soon
vodkhang

related questions