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.

I'm trying to get the user's news feed using the js api. I'm not wanting the users feed, but the newsfeed they see if they click on the facebook logo in facebook. This is the one that combines the user's feed with all their friends feeds. Is this possible? I would hate to have to do one query to get the feed from each of the users friends and then manually stitch them all together. Is there another way?

share|improve this question
I think I may be able to get something using FQL... Will have to look into it – Jack Allan Nov 14 '11 at 15:46
This seems like a likely candidate:developers.facebook.com/docs/reference/fql/stream – Jack Allan Nov 14 '11 at 16:42
The following query seems to return what I need. It's missing people's names but I can live with that I suppose! facebook.com/fql?q=SELECT description_tags,description,message_tags,tagged_ids,xid,permalink,privacy,likes‌​,comments,impressions,attachment,action_links,app_data,message,target_id,actor_id‌​,attribution,filter_key,created_time,updated_time,source_id,app_id,viewer_id,post‌​_id FROM stream WHERE source_id = me() OR source_id IN (SELECT uid2 FROM friend WHERE uid1 = me()) – Jack Allan Nov 14 '11 at 17:17
It's still far from perfect. Hopefully someone has the answer! – Jack Allan Nov 15 '11 at 10:30

2 Answers

up vote 0 down vote accepted

In the end I gave up. Don't this this is possible with the present API

share|improve this answer

I know this post is old, but I'm searching for it now, and since now Facebook has updated the API, there's a solution:

https://graph.facebook.com/me/home

You'll have to have an extended permission for read_stream.

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.