Representational State Transfer -- 1

找到了扇贝网github地址:https://github.com/shanbay/
还找到了扇贝网API和开发文档:http://www.shanbay.com/developer/wiki/intro/

望而生畏,天啊,根本看不懂。
后来想到,这是好多人努力好多年的成果,看不明白也没什么。

还是学点儿东西,再总结一下这两个月的学习成果,希望能找到工作。



把维基百科上REST的介绍抄了一遍。

Representational state transfer (REST) or RESTful web service is a way of providing interoperability between computer systems on the Internet. REST-compliant Web services allow requesting systems to access and manipulate textual representations of Web resources using a uniform and predefined set of stateless operations. Other forms of Web service exist, which expose their own arbitrary sets of operations such as WSDL and SOAP.

Web resources” were first defined on the World Wide Web as documents or files identified by their URLs, but today they have a much more generic and abstract definition encompassing every thing or entity taht can be identified, named, addressed or handled, in any way whatsoever, on the Web.

In a RESTful Web service, requests made to a resource’s URI (Uniform Resource Identifier) will elicit a response that may be in XML, HTML, JSON or some other defined format. The response may confirm that some alteration has been made to the stored resource, and it may provide hypertext links to other related resources or collections of resources. Using HTTP, as is most common, the kind of operations available include those predefined by the HTTP verbs GET, POST, PUT, DELETE and so on.

By making use of a stateless protocol and standard operations, REST systems aim for fast performance, relisbility, and the ability to grow, by re-using components that can be managed and updated without affecting the system as a whole, even while it is running.

The term representational state transfer was introduced and defined in 2000 by Roy Fielding in his doctoral dissertation. Fielding used REST to design HTTP 1.1 and Uniform Resource Indetifiers (URI). The term is intended to evoke an image of how a well-designed Web application behaves: it is a network of Web resources (a virtual state-machine) where the user progresses through the application by selecting links, such as /user/tom, and operations such as GET or DELETE (state transitions), resulting in the next resource (representing the next state of the application) being transferred to the user for their use.


History

REST was defined by Roy Fielding in his 2000 PhD dissertation “Architectural Styles and the Design of Network-based Software Architectures” at UC Irvine. Fielding developed the REST architectual style in parallel with HTTP 1.1 of 1996-1999, based on the existing design of HTTP 1.0 of 1996.

In a retrospective look at the development of REST, Roy Fielding said:

Throughout the HTTP standardization process, I was called on to defend the design choices of the Web. That is an extremely difficult thing to do within a process that accepts proposals from anyone on a topic that was rapidly becoming the center of an entire industry. I had comments from well over 5000 developers, many of whom were distinguished engineers with decades of experience, and I had to explain everything from the most abstract notions of Web interaction to the finest details of HTTP syntax. That process honed my model down to a core set of principles, properties, and constraints that are now called REST.

Architectural properties

The architectural properties affected by the constraints of the REST architectural style are:

  • Performance - component interactions can be the dominant factor in user - perceived performance and network efficiency.
  • Scalability to support large numbers of components and interactions among components. Roy Fielding, one of the principal authors of the HTTP specification, describes REST’s effect on scalability as follows:

    REST’s client-server separation of concerns simplifies component implementation, reduces the complexity of connector semantics, improves the effectiveness of performance tuning, and increades the scalability of pure server components. Layered system constraints allow intermediaries—proxies, getways, and firewalls—to be introduced at various points in the communication without changing the interfaces between components, thus allowing them to assist in communication translation or improve performance via large-scale, shared caching. REST enables intermediate processing by comstraining messages to be self-descriptive: interaction is stateless between requests, standard methods and media types are used to indicate semantics and exchange information, and responses explicitly indicate cacheability.
  • Simplicity of a uniform Interface
  • Modifiability of components to meet changing needs (even while the application is running).
  • Visibility of communication between components by service agents.
  • Portability of components by moving program code with the data.
  • Reliability is the resistance to failure at the system levle in the presence of failures within components, connectors, or data.

  • Architecural constraints

    There are six guiding constraints that define a RESTful system. These constraints restrict the ways that the server may process and respond to client requests so that, by operating within these constraints, the service gains describe non-functional properties, such as performance, scalability, simplicity, modifiability, visibility, portability, and reliability. If a service violates any of the required constraints, it cannot be considered RESTful.

    The formal REST constraints are as follows:

    Client-server architecture

    See also: Client–server model

    The first constraints added to our hybrid style are those of the client-server architectural style. Separation of concerns is the principle behind the client-server constraints. By separating the user interface concerns from the data storage concerns, we improve the portability of the user interface across multiple platforms and improve scalability by simplifying the server components. Perhaps most significant to the Web, however, is that the separation allows the components to evolve independently, thus supporting the Internet-scale requirement of multiple organizational domains.

    Statelessness

    See also: Stateless protocol

    The client-server communication is constrained by no client context being stored on the server between requests. Each request from any client contains all the information necessary to service the request, and session state is held in the client. The session state can be transferred by the server to another service such as a database to maintain a persistent state for a period and allow authentiation. The client begins sending requests when it is ready to make the transition to a new state. While one or more requests are outstanding, the client is considered to be in transition. The represnetation of each application state contains links that may be used the next time the client chooses to initiate a new state-transition.

    Cacheability

    See also: Web cache

    As on the World Wide Web, clients and intermediaries can cache responses. Responses must therefore, implicitly or explicity, define themselves as cacheable or not to prevent clients from reusing stale or inappropriate data in response to further requests. Well-managed caching partially or completely eliminates some client-server interactions, further improving scalability and performance.

    Uniform Interface

    The uniform interface constraint is fundamental to the design of any REST service. It simplifies and decouples the architecture, which enables each part to evolve independently. The four constraints for this uniform interface are:

    Resource identification in requests

    Individual resources are identified in requests, for example using URIs in Web-baded REST systems. The resources themselves are conceptually separate from the representations that are returned to the client. For example, the server may send data from its database as HTML, XML or JSON, none of which are the server’s internal representation.

    Resource manipulation through representations

    When a client holds a representation of a resource, including any metadata attached, it has enough information to modify or delete the resource.

    Self-descriptive message

    Each message includes enough information to describe how to process the message. For example, which parser to invoke may be specified by an Internet media type (previously known as a MIME type).

    Hypermedia as the engine of application state (HATEOAS)

    Having accessed an initial URI for the REST application—analogous to human Web user accessing the home page of a website—a REST client should then be able to use server-provided links danamically to discover all the available actions and resources it needs. As access proceeds, the server responds with text that
    includes hyperlinks to other actions taht are currently available. There is no need for the client to he hard-coded with information regarding the structure or dynamics of the REST service.

    Layered system

    See also:

    In telecommunication, a layered system is a system in which components are grouped, i.e., layered, in a hierarchical arrangement, such that lower layers provide functions and services that support the functions and services of higher layers.

    A client cannot ordinarily tell whether it is connected directly to the end server, or to an intermediary along the way. Intermediary servers may improve system scalability by enabling load balancing and by providing shared caches. They may also enforce security policies.

    Code on demand (optional)

    See also: Client-side scripting

    Servers can temporarily extend or customize the functionality of a client by transferring executable code. Examples of this may include compiled components such as Java applets and client-side scripts such as JavaScript.


    Applied to Web services

    Web service APIs that adhere to the REST architecural constraints are called RESTful APIs. HTTP-based RESRful APIs are defined with the following aspects:

    • base URL, such as http://api.example.com/resources/
    • an internet media type that defines state transition data elements (e.g., Atom, microformats, application/vnd.collection+json,etc.). The current representation tells the client how to compose requests for transitions to all the next available application states. This could be as simple as a URL or as complex as a Java applet.
    • standard HTTP methods (e.g., OPTIONS, GET, PUT, POST, and DELETE)

    Relationship between URL and HTTP methods

    The following table shows how HTTP methods are typically used in a RESTful API:

    HTTP methods
    Uniform Resource Locator (URL) GET PUT PATCH POST DELETE
    Collection, such as https://api.example.com/resources/ List the URIs and perhaps other details of the collection’s members. Replace the entire collection with another collection. Not generally used Create a new entry in the collection. The new entry’s URI is assigned automatically and is usually returned by the operation. Delete the entire collection.
    Element, such as https://api.example.com/resources/item17 Retrieve a representation of the addressed member of the collection, expressed in an appropriate Internet media type. Replace the addressed member of the collection, or if it does not exist, create it. Update the addressed member of the collection. Not generally used. Treat the addressed member as a collection in its own right and create a new entry within it. Delete the addressed member of the collection.

    The GET method is a safe method (or nullopotent), meaning that calling it produces no side-effects: retrieving or accessing a record does not change it. The PUT and DELETE methods are idempotent, meaning that the state of the system exposed by the API is unchanged no matter how many times more than once the same request is repeated.

    Unlike SOAP-based Web sercices, there is no “official” standard for RESTful Web APIs. This is because REST is an architectural style, while SOAP is a protocol. REST is not a standard in itself, but RESTful implementations make use of standards, such as HTTP, URI, JSON, and XML. Many developers also describe their APIs as being RESTful, even though these APIs actually don’t fulfill all of the architectural constraints described above (especially the uniform interface constraint).

    你可能感兴趣的:(学习,笔记)