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 ?
