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.

Just saw that Facebook has removed the support for offset based pagination. Now how I am supposed to do pagination based on offset. Currently in my app, I was showing results by the following ajax call:

return 'https://graph.facebook.com/search?type=post&q=' + query + '&offset=' + nextPage + '&limit=20$date_format=r&callback=?'

Facebook said to use time-based pagination, which looks really bad when, because, every time I make a call, it will give me recent posts, and thus the user wont be able to see the old posts.

Also, without offset, how can I get to know that all the posts have been traversed through, and there are no more posts to show ?

Any1 else facing the same issue/having a workaround ?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.