My application has a resource at /foo
. Normally, it is represented by an HTTP response payload like this:
{"a": "some text", "b": "some text", "c": "some text", "d": "some text"}
The client doesn't always need all four members of this object. What is the RESTfully semantic way for the client to tell the server what it needs in the representation? e.g. if it wants:
{"a": "some text", "b": "some text", "d": "some text"}
How should it GET
it? Some possibilities (I'm looking for correction if I misunderstand REST):
GET /foo?sections=a,b,d
. GET /foo/a+b+d
My favorite if REST semantics doesn't cover this issue, because of its simplicity. /widgets
representing a presentable list of /widget/<id>
resources, which I've never had a problem with.GET /foo/a
, etc, and have the client make a request per component of /foo
it wants. /foo
has hundreds of components and the client needs 100 of those./foo
, I have to use Ajax, which is problematic if I just want a single HTML page that can be crawled, rendered by minimalist browsers, etc./foo
: {"a": {"url": "/foo/a", "content": "some text"}, ...}
GET /foo
, Content-Type: application/json
and {"sections": ["a","b","d"]}
in the request body. GET
. It's legal HTTP but how can I guarantee some user's proxy doesn't strip the body from a GET
request?GET
request so I can't use that for testing.Sections-Needed: a,b,d
POST /foo/requests
, Content-Type: application/json
and {"sections": ["a","b","d"]}
in the request body. Receive a 201
with Location: /foo/requests/1
. Then GET /foo/requests/1
to receive the desired representation of /foo
/foo/requests/1
is just an alias that would only be used once and only kept until it is requested.You could make them 2 representations of the same resource and with content negotiation.. 100% restful.
Each resource can have one or more representations and at most one representation of each media type.
REST uses various representations to represent a resource where Text, JSON, XML. The most popular representations of resources are XML and JSON.
The representation of a resource is the way that your service communicates the state of the resource, e.g. XML, JSON that represents the state of the lamp. In REST API, a resource is identified by a uniform identifier (e.g. URI).
I would suggest the querystring solution (your first). Your arguments against the other alternatives are good arguments (and ones that I've run into in practise when trying to solve the same problem). In particular, the "loosen the constraints/respond to foo/a
" solution can work in limited cases, but introduces a lot of complexity into an API from both implementation and consumption and hasn't, in my experience, been worth the effort.
I'll weakly counter your "seems to mean" argument with a common example: consider the resource that is a large list of objects (GET /Customers
). It's perfectly reasonable to page these objects, and it's commonplace to use the querystring to do that: GET /Customers?offset=100&take=50
as an example. In this case, the querystring isn't filtering on any property of the listed object, it's providing parameters for a sub-view of the object.
More concretely, I'd say that you can maintain consistency and HATEOAS through these criteria for use of the querystring:
However, what to return for these Uris can sometimes pose more complex questions:
/foo
is an entity but foo/a
is a string); the alternative is to return a partially-populated entity/foo
doesn't have an a
, a 404
status is misleading (/foo
does exist!), but an empty response may be equally confusinga
is mandatory but the client requests only b
, you are forced to return either a junk value for a
, or an invalid object)In the past, I have tried to resolve this by defining specific named "views" of required entities, and allowing a querystring like ?view=summary
or ?view=totalsOnly
- limiting the number of permutations. This also allows for definition of a subset of the entity that "makes sense" to the consumer of the service, and can be documented.
Ultimately, I think that this comes down to an issue of consistency more than anything: you can meet HATEOAS guidance using the querystring relatively easily, but the choices you make need to be consistent across your API and, I'd say, well documented.
I've decided on the following:
Supporting few member combinations: I'll come up with a name for each combination. e.g. if an article has members for author, date, and body, /article/some-slug
will return all of it and /article/some-slug/meta
will just return the author and date.
Supporting many combinations: I'll separate member names by hyphens: /foo/a-b-c
.
Either way, I'll return a 404
if the combination is unsupported.
From the definition of REST:
a resource R is a temporally varying membership function MR(t), which for time t maps to a set of entities, or values, which are equivalent. The values in the set may be resource representations and/or resource identifiers.
A representation being an HTTP body and an identifier being a URL.
This is crucial. An identifier is just a value associated with other identifiers and representations. That's distinct from the identifier→representation mapping. The server can map whatever identifier it wants to any representation, as long as both are associated by the same resource.
It's up to the developer to come up with resource definitions that reasonably describe the business by thinking of categories of things like "users" and "posts".
If I really care about perfect HATEOAS, I could put a hyperlink somewhere in the /foo
representation to /foo/members
, and that representation would just contain a hyperlink to every supported combination of members.
From the definition of a URL:
The query component contains non-hierarchical data that, along with data in the path component, serves to identify a resource within the scope of the URI's scheme and naming authority (if any).
So /foo?sections=a,b,d
and /foo?sections=b
are distinct identifiers. But they can be associated within the same resource while being mapped to different representations.
HTTP's 404
code means that the server couldn't find anything to map the URL to, not that the URL is not associated with any resource.
No browser or cache will ever have trouble with slashes or hyphens.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With