Reputation: 3953
I am working on pubnub history and successfully getting 100 messages either of Newest, oldest or time format. I just want to get more than 100 messages history because the method given in Android Api is giving only 100 messages. How can I implement this pubnub history mechanism?
Upvotes: 2
Views: 581
Reputation: 2445
To get the next COUNT number of messages, take the "end" timetoken returned, and use it as your next "start" parameter to your next call:
Upvotes: 2