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.