RESTful Design: Paging Collections - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T03:20:05Zhttp://stackoverflow.com/feeds/question/501013http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/501013/restful-design-paging-collections3RESTful Design: Paging CollectionsKoen Bok2009-02-01T15:41:08Z2009-03-03T21:42:27Z
<p>I am designing a REST api that needs paging (per x) enforces from the server side.</p>
<p>What would be the right way to page through any collection of resources:</p>
<p>Option 1:</p>
<pre><code>GET /resource/page/<pagenr>
GET /resource/tags/<tag1>,<tag2>/page/<pagenr>
GET /resource/search/<query>/page/<pagenr>
</code></pre>
<p>Option 2:</p>
<pre><code>GET /resource/?page=<pagenr>
GET /resource/tags/<tag1>,<tag2>?page=<pagenr>
GET /resource/search/<query>?page=<pagenr>
</code></pre>
<p>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?</p>
http://stackoverflow.com/questions/501013/restful-design-paging-collections/501025#5010251Answer by Allain Lalonde for RESTful Design: Paging CollectionsAllain Lalonde2009-02-01T15:47:38Z2009-02-01T15:47:38Z<p>With my limited understanding of what REST is about, then the following might be the "most" restful. </p>
<pre><code>GET /resource/?page=<pageenr>&asof=<datetime>
</code></pre>
<p>Since the content of the representation would never change unexpectedly, and caching could be used.</p>
<p>But to actually answer your question, I think the parameter page is the preferred method.</p>
http://stackoverflow.com/questions/501013/restful-design-paging-collections/523561#5235610Answer by LiorH for RESTful Design: Paging CollectionsLiorH2009-02-07T10:09:53Z2009-02-07T10:09:53Z<p>I'd go with option (2). Why?</p>
<ol>
<li>You can later add page-size parameter to the query so the client can specify the page size.</li>
<li>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.</li>
</ol>
http://stackoverflow.com/questions/501013/restful-design-paging-collections/608345#6083450Answer by Bjorn for RESTful Design: Paging CollectionsBjorn2009-03-03T21:42:27Z2009-03-03T21:42:27Z<p>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 <a href="http://tools.ietf.org/html/rfc5005" rel="nofollow">RFC 5005 Feed Paging and Archiving</a></p>