I am trying to get all youtube links shared by current user's facebook friends from the past hour.
I have found an FQL script that would get the latest 100 links shared by the current user's friends but I am trying to query only for youtube links and for the past hour instead of a limit of 100.
This is the script that I have found. How can I change it?
select link_id, title, url, owner, owner_comment, created_time, picture from link where owner in (select uid2 from friend where uid1 = me() LIMIT 100) ORDER BY created_time DESC