Slide 14
Slide 14 text
Parameters
4 Avoid sticking parameters in routes. Defer to query
parameters or form data.
4 e.g. GET /products/search?q=:query instead of GET /
products/search/:query
4 Other examples include pagination, like page and
per_page. Important to return pagination
information in the response (links to the next,
previous, first, and last pages of a given collection).