I am designing a REST api that needs paging (per x) enforces from the server side.
What would be the right way to page through any collection of resources:
Optio
With my limited understanding of what REST is about, then the following might be the "most" restful.
GET /resource/?page=&asof=
Since the content of the representation would never change unexpectedly, and caching could be used.
But to actually answer your question, I think the parameter page is the preferred method.