vote up 3 vote down star
3

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:

Option 1:

GET /resource/page/<pagenr>
GET /resource/tags/<tag1>,<tag2>/page/<pagenr>
GET /resource/search/<query>/page/<pagenr>

Option 2:

GET /resource/?page=<pagenr>
GET /resource/tags/<tag1>,<tag2>?page=<pagenr>
GET /resource/search/<query>?page=<pagenr>

If 1, what should I do with GET /resource? Redirect to /resource/page/0, reply with some error or reply with the exact same as /resource/page/0 without redirecting?

flag
Personally I'd go with page=<pagenr>. But I think you have more fundamental questions to answer about your design judging by the options above. :) – Andy Hume Feb 1 at 16:12
You mean because I have to use paging? – Koen Bok Feb 1 at 17:20

3 Answers

vote up 1 vote down

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.

link|flag
vote up 0 vote down

I'd go with option (2). Why?

  1. You can later add page-size parameter to the query so the client can specify the page size.
  2. In case no page parameter was specified you can just return the first page (the default). In many cases you client might need only the first page, so it simplifies the protocol between client and server.
link|flag
vote up 0 vote down

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

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.