I'm using Blogger API v3 to list a number of comments of a blog.
The issue is that I want to list all comments from a blog and the first request doesn't return directly all the needed comments (because I choose to return 10 comments per request for pagination reasons) and I have to use the nextPageToken
parameter and make another request to get remaining comments (I may need many requests till i get all commments).
- The response is paginated because there are more than 10 comments.
- Those comments are sorted in ascending.
This problem can be solved simply by reverse sorting and it will require then just one request to return the needed comments.
So, is there anyway i can sort the comments in descending order?
The Documentation does not give any information about this