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.

Hi I have been looking for hours but cannot find the API call that retrieves a user's news feed (i.e the thing that you see at http://www.facebook.com/home.php). I think this should be something extremely easy. What did I miss?
I would prefer an answer with FQL, but other API methods will be just fine, as I think I can translate between them.

share|improve this question

3 Answers

up vote 1 down vote accepted

I found it! The way is to look in the stream for post from users that are your friends. This is kind of annoying because it takes double the effort just to do some very basic task. In Objective-C using FBConnect the code look like this:

NSString *connections = [NSString stringWithFormat:@"select target_id from connection where source_id == %lld", _uid];
NSString *fql = [NSString stringWithFormat:@"select message from stream where source_id in (%@)", connections];
NSDictionary* params = [NSDictionary dictionaryWithObject:fql forKey:@"query"];
[[FBRequest requestWithDelegate:self] call:@"facebook.fql.query" params:params];
share|improve this answer
do you get the same data that appears in facebook.com/home.php ? can you build the same page if you wish to? – shaimagz Mar 11 '10 at 18:46
yes you will get the same set of data, and yes of course you can :D if you can do ajax :D – phunehehe Mar 12 '10 at 1:20
may i ask you to elaborate this one .im not fond of Objective-C :) – kapitanluffy Apr 12 '11 at 3:55
@kapitanluffy I think this one is quite outdated. I stopped doing iPhone so I can't help much, you will have better luck searching the docs :) – phunehehe Apr 12 '11 at 5:58

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

Note: /me/home retrieves an outdated view of the News Feed. This is currently a known issue and we (Facebook) don't have any near term plans to bring them back up into parity.

share|improve this answer

http://developers.facebook.com/docs/reference/fql/stream

the first example is how to properly get the news feed.

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.