How do I access friends likes with FQL? I can see it in the Graph API:
https://graph.facebook.com/1111111/likes
... but I can't seem to figure out how to do it in FQL.
|
How do I access friends likes with FQL? I can see it in the Graph API: https://graph.facebook.com/1111111/likes ... but I can't seem to figure out how to do it in FQL. |
|||
|
|
You can try this in your api explorer to get user friends likes. |
|||
|
|
|
You can do this by querying
You cannot however get list of likes by friends for: photo, album, event, group, note, link, video, application, status, check-in, review, comment, post. This info is located in EDIT: Added Graph API Explorer Example to easily preview this: http://developers.facebook.com/tools/explorer?method=GET&path=fql%3Fq%3DSELECT%20url%20FROM%20url_like%20WHERE%20user_id%20IN%20(SELECT%20uid2%20FROM%20friend%20WHERE%20uid1%20%3D%20me()) |
|||||||||||
|