Tagged Questions
4
votes
2answers
159 views
does REST discoverability and HATEOAS imply that you can change URIs?
I'm trying to clarify a concept related to REST discoverability - that is whether or not satisfying the HATEOAS constraint for a RESTful service means that now the URIs can change, because they are ...
4
votes
4answers
342 views
REST and URI Caching
As I understand it, using a hypertext-driven RESTful Web service, a client is not supposed to know anything about server URI layout except for a couple of well-known entry points. This is supposed to ...
3
votes
3answers
58 views
In REST, how should a GET request to a findAll operation be handled when the Resources are paged?
In a RESTful Service, Resources that cannot all be retrieved at once are paginated. For example:
GET /foo?page=1
The question is, how should I handle a getAll request such as:
GET /foo
Taking ...