Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question

1 Answer

You may have found a limitation of the Facebook API. Was there any pagination information in your response that would allow you to page thru the results?

share|improve this answer
what do you mean? – Marwan Roushdy Jan 10 '12 at 14:30
To help preserve overall application responsiveness an application can choose to impose upper limits as to how much information to process and send in one request's response. This is where pagination comes into play. The API is kind enough to give you next/previous links to access the next virtual page of information. – DMCS Jan 10 '12 at 15:22
1  
Did this answer help you to find your solution to your question, if so, please accept this answer. See meta.stackoverflow.com/questions/5234/… for how to mark answers. Thank you! – DMCS Feb 4 '12 at 20:34

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.