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.

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??

share|improve this question

1 Answer

This query should do it -

SELECT name, username, pic from user WHERE uid IN (SELECT actor_id FROM stream WHERE filter_key = 'nf' AND is_hidden = 0 LIMIT 100)

Alternatively you could look at doing a multiquery. More information on multiqueries can be found on the facebook developers site:

https://developers.facebook.com/docs/reference/rest/fql.multiquery/

share|improve this answer

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.