I wrote some quick perl and python code to get the list of courses from canvas.
I can get user data for a single course like this:
https://canvas.instructure.com/doc/api/v1/courses/$course/users?per_page=250
where $course is my course number in perl.
However, the max number the API will support appears to be 100. So I need to get the first 100 and link to get the next group. The only docs I can find on paging:
https://canvas.instructure.com/doc/api/file.pagination.html
seems to be more for interactive documents. I don't see anything in the JSON coming back that indicates how to get the next bunch. Any help?