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 working on a module to my web application which is supposed to display latest news feed entries for a specific user.

I was wondering if it's possible to add a certain "orderby" parameter to the graph api url in order to fetch the "latest news" instead of facebook's default "top news" which arranges the order using popularity and other elements.

I'm currently using the following url:

https://graph.facebook.com/me/home?access_token=...&limit=10

but again, this does not return the latest entries.

Does anyone know how to solve this?

share|improve this question

3 Answers

Mikey, I've been trying to do the same thing. During my tests I found that the Facebook API didn't return all the entries it was supposed to.

Meaby in some way it's prevent you from seeing all updates correctly.

Try this :

In your browser open : https://graph.facebook.com/me/home?access_token=

then

Go to the Facebook Graph API Doc : https://developers.facebook.com/docs/reference/api/ and click the News feed: https://graph.facebook.com/me/home?access_token=... link in the page.

Check if the two page show the same output.

share|improve this answer

You can use FQL rather then Graph to query the "stream" table. FQL supports order by statements similar to SQL. http://developers.facebook.com/docs/reference/fql/

For your specific example it would be

SELECT post_id FROM stream WHERE source_id=me() ORDER BY updated_time DESC

Obviously you will want to query more then just the post_id, you can find the full list of fields here http://developers.facebook.com/docs/reference/fql/stream/

share|improve this answer

I know this topic is kind of old but I have a question about it that I cannot anywhere an answer for it. It seems now Facebook API does not get the 'top stories' even the setting of my Facebook account is top stories. Indeed, it shows the 'recent stories'; so I want to ask is there anyway I can get the top stories (in the same order we see in our news feed) instead of recent stories?

Thanks

share|improve this answer
This looks like a new question. Please use the "Ask Question" link at the top right! – Don Cruickshank Jun 12 at 13:53

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.