Is it possible to use FQL to get user's feed? To get the same like graph.facebook.com/user/feed
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.
|
|
|
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 |
|||||||
|
|
You should do on this way
set SOURCE_ID with your friend's id. |
|||||||
|
|
I think you should try in following way: see if it helps.
If you pass app id then it will return your friends feed posted from that app only. |
|||
|
|
