I was able to get an access token working with oauth, but the end point limits the maximum records per request to 100.
I need to get more than that, and am wondering if there is a simple/common way to do this?
I'd like to keep making requests until I get all the records. For example:
@products = JSON.parse(@access_token.get("/api/rest/products?page=#{@n}&limit=100").body)
I may need 10,000+ of the products. Is this possible?