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 am trying to access my news feed using the following code:

me?fields=home

When I access it in my iOS app, I can only retrieve a few posts.

When I execute it in Graph API explorer to retrieve next page of posts:

me?fields=home.until(123456789).limit(25)

Where does this id come from? Or how do i retrieve the next set of posts which I can access by clicking on the arrows in the Graph API explorer, through the code?

share|improve this question

1 Answer

up vote 0 down vote accepted

Finally found it in the Facebook documentation itself.

  1. The section called "Paging" at the following link briefly explains (until and limit) fields.

    https://developers.facebook.com/docs/reference/api/

  2. The following link explains how to get the next page of posts.

    https://developers.facebook.com/docs/reference/api/pagination/

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.