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.

Is it possible to use FQL to get user's feed? To get the same like graph.facebook.com/user/feed

share|improve this question

3 Answers

up vote 2 down vote accepted

The equivalent table in FQL is stream. This query gets you the active user's news feed.

SELECT post_id, actor_id, target_id, message FROM stream WHERE filter_key in (SELECT filter_key FROM stream_filter WHERE uid=me() AND type='newsfeed') AND is_hidden = 0

share|improve this answer
Yeah, but I'm asking friend's wall. But I guess it comes when you set source_id = friend_id – Juuso Kosonen Oct 25 '12 at 6:36
1  
You'd change the above query to uid = FRIEND_ID to get a friend's newsfeed. – cpilko Oct 25 '12 at 13:25

You should do on this way

SELECT post_id, created_time, actor_id, target_id, message FROM stream WHERE source_id='SOURCE_ID' AND created_time<1225705644 LIMIT 150

set SOURCE_ID with your friend's id.

share|improve this answer
No, this way it will only give posts which are posted by your friend, not his view of "News Feed" – BlackDivine May 3 at 13:12
@BlackDivine The question mentioned "To get the same like graph.facebook.com/user/feed", not "To get the same like graph.facebook.com/user/home" as you're talking about, so he's asking for timeline feed, not newsfeed. Moreover, the comment at stackoverflow.com/questions/12992905/… indicated this: "but I'm asking friend's wall." – 林果皞 May 3 at 13:38
@BlackDivine i'm not understand why the answer is accepted because you would get error "(#606) uid in the where clause must be the session user" if you try to replace 'uid=me()' to 'uid=FRIEND_ID' – 林果皞 May 3 at 13:50

I think you should try in following way: see if it helps.

SELECT post_id, actor_id, type, permalink, message, created_time, likes, comment_info FROM stream WHERE source_id = me() AND app_id = AppID

If you pass app id then it will return your friends feed posted from that app only.

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.