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.

As described in the sample on documents, we can retrieve the user's news feed as below.
SELECT post_id, actor_id, target_id, message FROM stream WHERE source_id in (SELECT target_id FROM connection WHERE source_id= AND is_following=1) AND is_hidden = 0

What I want to do is to display user's news feed and when user clicks "my favorite", display the summary(all posts that a user liked).

Any idea?

Thanks.

share|improve this question

1 Answer

up vote 0 down vote accepted

Add this criteria to your query AND likes.user_likes = 1 and you should get it. From example i do this to get all that i have liked in my wall: https://api.facebook.com/method/fql.query?query=SELECT post_id, message, likes FROM stream WHERE source_id = AND likes.user_likes = 1 limit 50&access_token=

The same applies to the above.

share|improve this answer
Thanks, Balakrishnan. Now I can get posts that a user likes. The new problem is taht even when I set "LIMIT 200", I only get few record. It looks like I'm getting liked posts from 200 latest posts. – Go Hagiwara May 15 '11 at 8:25

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.