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
I'd go with option (2). Why?
With my limited understanding of what REST is about, then the following might be the "most" restful.
GET /resource/?page=<pageenr>&asof=<datetime>
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.
What the URI looks like is not the most important part. What you should be thinking about instead is how it is presented to the user. A page should for example have a link to the "next" page and another link to the "previous" page (if there is one). Take a look at RFC 5005 Feed Paging and Archiving