Reputation: 8042
Does anyone know of a way to retrieve the users entire news feed? Querying /me/home
does filter some stories from. Also, it seems to retrieve the top stories. Is there any way to retrieve the latest stories?
It doesn't matter whether it's through the Graph API or FQL.
Upvotes: 2
Views: 420
Reputation: 4150
me/home is pulling posts in order of created date on my end
try this as your query, you can mod fields to include any you need.
me?fields=home.limit(20).fields(created_time,updated_time,id)
if it is still out of order because of your cookie settings from the actual home feed, you can force it to reorder by passing the array in sort(); "php".
for sort() refer to: http://php.net/manual/en/function.sort.php
Upvotes: 2