Trying to build a news feed app.

I've seen /me/home/ used to get the user's news feed object, but from what I can tell, it returns something similar to the news feed but not exactly the same. Some posts appear in /me/home/ that are not in the news feed, and a lot of posts that appear is the news feed are not in /me/home/.

Any way to get the same data with graph API?

link|improve this question
feedback

1 Answer

You can get everything from a user's stream by querying the FQL stream table.

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

Please read further about the stream at: http://developers.facebook.com/docs/reference/fql/stream/

link|improve this answer
But graph API is much more convenient way of polling for data, and I get all the necessary information in a single object instead of querying different objects to fill my information. Isn't there a way to get the same information from graphAPI? – Peled Roy Jan 29 at 6:49
What objects does that query miss? – DMCS Jan 29 at 15:21
It's just not the same as the news feed, I'm not entirely sure why, but it's just not the same filter. My guess is that there are different algorithms for stream and news feed... – Peled Roy Jan 30 at 8:08
Can you specify? That FQL statement is direct from Facebook's documentation on how to get the newsfeed of an individual. What feed items are you seeing that is missing? In my news feed, I get a 1:1 correlation between the FQL and the GUI. Maybe my newsfeed isn't picking up all the types of items yours does. What types of items is it missing? – DMCS Jan 30 at 15:28
I'm sorry, I was referring to Graph API and not FQL, I rather use Graph API because it's much more useful. – Peled Roy Feb 2 at 7:03
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.