Web API is a popular tool used for current middle-tier development. Web API is based on the concept of REST. These two articles are summaries of REST and REST-related issues with my understanding.
The second article was my learning notes several years agao, summarying the REST features, related issues and my understanding. When I tried to rewrite them into an article, I found out that I should review and briefly summarize the basic concept of REST, but that is not just easy work and can be done in several words or sentences. Then I think I'd better write another article for the basic concept of REST, that is this one.
Introduction
This will be the contents of this article,
- What is REST
- Guiding Principles of REST
- Rules of REST API
- Advantages and disadvantages of REST API
- CRUD relates to a REST API
A: What is REST[ref]
REST is an acronym for REpresentational State Transfer. It is an architectural style for distributed hypermedia systems and was first presented by Roy Fielding in 2000 in his famous dissertation.
What is RESTful?
RESTful is typically used to refer to web services implementing such an architecture. A RESTful API is an application program interface (API) that uses HTTP requests to GET, PUT, POST and DELETE data.
B: Guiding Principles of REST[ref][ref]
REST has its own 6 guiding constraints which must be satisfied if an interface needs to be referred to as RESTful. These principles are listed below.
- Client-server
Architecture made up of clients, servers, and resources, with requests managed through HTTP..
- Stateless
Each request from client to server must contain all of the information necessary to understand the request, and cannot take advantage of any stored context on the server. Session state is therefore kept entirely on the client.
- Cacheable
Cache constraints require that the data within a response to a request be implicitly or explicitly labeled as cacheable or non-cacheable. If a response is cacheable, then a client cache is given the right to reuse that response data for later, equivalent requests.
- Uniform interface
By applying the software engineering principle of generality to the component interface, the overall system architecture is simplified and the visibility of interactions is improved. In order to obtain a uniform interface, multiple architectural constraints are needed to guide the behavior of components. REST is defined by four interface constraints: identification of resources; manipulation of resources through representations; self-descriptive messages; and, hypermedia as the engine of application state.
- Layered system
The layered system style allows an architecture to be composed of hierarchical layers by constraining component behavior such that each component cannot “see” beyond the immediate layer with which they are interacting.
- Code on demand (optional)
REST allows client functionality to be extended by downloading and executing code in the form of applets or scripts. This simplifies clients by reducing the number of features required to be pre-implemented.



Comments
Join the conversation! Your thoughts help the community grow.