Hello,
I am currently working with some scooter mds data and I am trying to find references to help with pagination. I would like to be able to call page one and use a json fragmenter to process and then go onto page 2, etc. Has anyone worked with something like this before or has some ideas? I'd love some input.
The API has links in the json that have "first", "next", "last" that reference the corresponding page number.
My thought was to keep referencing the "next" page url for processing until the last page: It looks a little like this:
next: http://(scooter provider mds)trips?end_time=(date/time)&page=2&start_time=(date/time)
http://(scooter provider mds)trips?end_time=(date/time)&page=3&start_time=(date/time)