Is there a way to use facebook's FQL to fetch all posts (or video posts) of a user's friend?
For example something like:
SELECT post_id, message FROM stream WHERE source_id=(fb_friends_array)
And how do i use this with the graph api. Normally i use the following syntax to get data:
$data = json_decode(file_get_contents(....));
All responses are JSON objects.– Lix Sep 6 '11 at 15:57