Implementing REST Web Services: Best Practices and Guidelines
by Hao He
August 11, 2004
Despite the lack of vendor support, Representational State Transfer (REST) web services have won the hearts of many working developers. For example, Amazon's web services have both SOAP and REST interfaces, and 85% of the usage is on the REST interface. Compared with other styles of web
services, REST is easy to implement and has many highly desirable
architectural properties: scalability, performance, security,
reliability, and extensibility. Those characteristics fit nicely with
the modern business environment, which commands technical solutions
just as adoptive and agile as the business itself.
A few short years ago, REST had a much lower profile than XML-RPC,
which was much in fashion. Now XML-RPC seems to have less
mindshare. People have made significant efforts to RESTize SOAP and
WSDL. The question is no longer whether to REST, but instead it's become how to be the best REST?
The purpose of this article is to summarize some best practices and
guidelines for implementing RESTful web services. I also propose a
number of informal standards in the hope that REST implementations can become more consistent and interoperable.
The following notations are used in this article:
- BP: best practice
- G: general guideline
- PS: proposed informal standard
- TIP: implementation tip
- AR: arguably RESTful -- may not be RESTful in the strict sense
Reprising REST
Let's briefly reiterate the REST web services architecture. REST web
services architecture conforms to the W3C's Web Architecture, and leverages the architectural principles of the Web, building its
strength on the proven infrastructure of the Web. It utilizes the semantics of HTTP whenever possible and most of the principles, constraints, and best practices published by the TAG also apply.
The REST web services architecture is related to the Service Oriented Architecture. This limits the interface to HTTP with the four well-defined verbs: GET, POST, PUT, and DELETE. REST web
services also tend to use XML as the main messaging format.
[G] Implementing REST correctly requires a resource-oriented view
of the world instead of the object-oriented views many developers are
familiar with.
Resource
One of the most important concepts of web architecture is a
"resource." A resource is an abstract thing identified by a URI. A REST service is a
resource. A service provider is an implementation of a service.
URI Opacity [BP]
The creator of a URI decides the encoding of the URI, and users
should not derive metadata from the URI itself. URI opacity only
applies to the path of a URI. The query string and fragment have
special meaning that can be understood by users. There must be a
shared vocabulary between a service and its consumers.
Query String Extensibility [BP, AR]
A service provider should ignore any query parameters it does not
understand during processing. If it needs to consume other services,
it should pass all ignored parameters along. This practice allows new
functionality to be added without breaking existing services.
[TIP] XML Schema
provides a good framework for defining simple types, which can be used
for validating query parameters.
Deliver Correct Resource Representation [G]
A resource may have more than one representation. There are four
frequently used ways of delivering the correct resource representation
to consumers:
- Server-driven negotiation. The service provider determines the
right representation from prior knowledge of its clients or uses the
information provided in HTTP headers like Accept, Accept-Charset,
Accept-Encoding, Accept-Language, and User-Agent. The drawback of this
approach is that the server may not have the best knowledge about what
a client really wants.
- Client-driven negotiation. A client initiates a request to a
server. The server returns a list of available of representations. The
client then selects the representation it wants and sends a second
request to the server. The drawback is that a client needs to send
two requests.
- Proxy-driven
negotiation. A client initiates a request to a server through a proxy.
The proxy passes the request to the server and obtains a list of
representations. The proxy selects one representation according to
preferences set by the client and returns the representation back to
the client.
- URI-specified representation. A client specifies the
representation it wants in the URI query string.
Server-Driven Negotiation [BP]
- When delivering a representation to its client, a
server MUST check the following HTTP headers: Accept, Accept-Charset,
Accept-Encoding, Accept-Language, and User-Agent to ensure the
representation it sends satisfies the user agent's capability.
- When consuming a service, a client should set the value of the
following HTTP headers: Accept, Accept-Charset, Accept-Encoding,
Accept-Language, and User-Agent. It should be specific about the type
of representation it wants and avoid "*/*", unless the intention is to
retrieve a list of all possible representations.
- A server may determine the type of representation to send from the
profile information of the client.
URI-Specified Representation [PS, AR]
A client can specify the representation using the following query
string:
mimeType={mime-type}
A REST server should support this query.
Different Views of a Resource [PS, AR]
A resource may have different views, even if there is only one
representation available. For example, a resource has an XML
representation but different clients may only see different portion of
the same XML. Another common example is that a client might want to
obtain metadata of the current representation.
To obtain a different view, a client can set a "view" parameter in
the URI query string. For example:
GET http://www.example.com/abc?view=meta
where the value of the "view" parameter determines the actual
view. Although the value of "view" is application specific in most
cases, this guideline reserves the following words:
- "
meta," for obtaining the metadata view of the resource or
representation.
- "
status," for obtaining the status of a request/transaction
resource.
[1] [2] Next