to get the functionality of I want for my app I need to start using FQL.
For the main stream I was using:-
$fb_news_feed = $facebook->api('/me/home');
what would be the equivelent in FQL that returns the same JSON. My current FQL is below
$fb_feed_params = array(
'method' => 'fql.query',
'query' => "SELECT post_id, actor_id, target_id, message, likes, created_time, type FROM stream WHERE filter_key = 'nf' AND is_hidden = 0 LIMIT 100",
);
$fb_news_feed = $facebook->api($fb_feed_params);
how do I get the users name etc? I'm guessing I would have to do some kind of join like you would in mysql??