I am trying to get all links posted by a user and his/her Facebook friends.
I am using Facebook PHP SDK and have the following FQL so far:
$fql = "SELECT link_id, owner, owner_comment, created_time, title, summary, url, image_urls
FROM link WHERE owner IN
(SELECT uid2 FROM friend WHERE uid1 = me() LIMIT 100)
AND created_time >= $_7ago";
For some reason, the above FQL works only for certain friends but gives errors for others. Does this have to do with privacy issues of these friends?
Also, even when the query works, the process takes more than 10 seconds. Is there an alternative way to get what I am looking for?
Thanks.