`

转:REST API必须是超文本驱动的

阅读更多

I am getting frustrated by the number of people calling any HTTP-based interface a REST API. Today’s example is the SocialSite REST API. That is RPC. It screams RPC. There is so much coupling on display that it should be given an X rating.

我是越来越失望了,许多人把任何基于HTTP的接口叫做REST API,眼前的例子就是SocialSite REST API。那是RPC,实实在在的RPC。它与显示如此耦合,再差也莫过于此

 

What needs to be done to make the REST architectural style clear on the notion that hypertext is a constraint? In other words, if the engine of application state (and hence the API) is not being driven by hypertext, then it cannot be RESTful and cannot be a REST API. Period. Is there some broken manual somewhere that needs to be fixed?

基于超文本概念,如何才能确保清晰的REST架构风格呢?这样来说吧,如果应用程序状态引擎(即API)不是由超文本驱动的,那就不是RESTful也不是REST的API。就这么简单。某些REST方面的破手册是否该修正一下呢?

 

API designers, please note the following rules before calling your creation a REST API:

API的设计者们,把你们的那些东西叫做REST API前请注意以下的规则:

 

A REST API should not be dependent on any single communication protocol, though its successful mapping to a given protocol may be dependent on the availability of metadata, choice of methods, etc. In general, any protocol element that uses a URI for identification must allow any URI scheme to be used for the sake of that identification. [Failure here implies that identification is not separated from interaction.]

REST API不应依赖于任何特定的通讯协议,在采用某个具体协议时可能受限于元数据的有效性、方法的选择等。通常,协议元素使用URI作标识时,对该标识必须允许运用任何URI方案。[ 不符合这一点意味着标识与交互没有分离 ]

A REST API should not contain any changes to the communication protocols aside from filling-out or fixing the details of underspecified bits of standard protocols, such as HTTP’s PATCH method or Link header field. Workarounds for broken implementations (such as those browsers stupid enough to believe that HTML defines HTTP’s method set) should be defined separately, or at least in appendices, with an expectation that the workaround will eventually be obsolete. [Failure here implies that the resource interfaces are object-specific, not generic.]

REST API不应修改通讯协议中预留出来作为补充或修正标准协议用途的资源,例如HTTP的PATCH方法和Link head域。违背了这一原则的方案应当单独定义,或者至少在附录中标注出来这样的方案最终会废弃掉。[ 不符合这一点意味着资源接口是对象相关的,不通用 ]

 

A REST API should spend almost all of its descriptive effort in defining the media type(s) used for representing resources and driving application state, or in defining extended relation names and/or hypertext-enabled mark-up for existing standard media types. Any effort spent describing what methods to use on what URIs of interest should be entirely defined within the scope of the processing rules for a media type (and, in most cases, already defined by existing media types). [Failure here implies that out-of-band information is driving interaction instead of hypertext.]

REST API应当将绝大部分精力放在媒体类型的定义上,或者是扩展关系名称的定义、已有超文本标记中的标准媒体类型等方面,以实现资源的表述、操作应用程序状态。任何类似于对某某URI应当使用什么样的方法等工作,都应当完全定义在特定媒体类型的处理规则范围中(绝大部分情况下已有媒体类型都已经定义好了这些规则)。[ 不符合这一点意味着交互是由其它信息驱动,而不是超文本 ]

 

A REST API must not define fixed resource names or hierarchies (an obvious coupling of client and server). Servers must have the freedom to control their own namespace. Instead, allow servers to instruct clients on how to construct appropriate URIs, such as is done in HTML forms and URI templates, by defining those instructions within media types and link relations. [Failure here implies that clients are assuming a resource structure due to out-of band information, such as a domain-specific standard, which is the data-oriented equivalent to RPC's functional coupling].

REST API决不能定义固定的资源名称或者层次关系(这是明显的客户端、服务器端耦合),服务器必须可以自由控制自己的名称空间。应当像HTML forms和URI模板一样,通过媒体类型和链接关系指示客户端如何构造正确的URI。[ 不符合这一点意味着客户端在通过其它信息(例如领域相关标准)猜测资源结构,这是数据导向,类似于RPC的函数耦合 ]

 

A REST API should never have “typed” resources that are significant to the client. Specification authors may use resource types for describing server implementation behind the interface, but those types must be irrelevant and invisible to the client. The only types that are significant to a client are the current representation’s media type and standardized relation names. [ditto]

REST API决不能使用对客户端有重要意义的类型化资源。规范的作者可能使用资源类型描述接口背后的服务器端实现,但这些类型必须与客户端无关,对客户端不可见。对客户端唯一有意义的类型是当前的表述性媒体类型和标准的关系名称。[ 同上 ]

 

A REST API should be entered with no prior knowledge beyond the initial URI (bookmark) and set of standardized media types that are appropriate for the intended audience (i.e., expected to be understood by any client that might use the API). From that point on, all application state transitions must be driven by client selection of server-provided choices that are present in the received representations or implied by the user’s manipulation of those representations. The transitions may be determined (or limited by) the client’s knowledge of media types and resource communication mechanisms, both of which may be improved on-the-fly (e.g., code-on-demand). [Failure here implies that out-of-band information is driving interaction instead of hypertext.]

使用REST API应该只需要知道初始URI(书签)和一系列针对目标用户的标准媒体类型(任何客户端都了解用来操作该媒体类型的API)。这样所有的应用程序状态转换都通过这样的方式进行:服务器在返回的表述性消息中提供选项,由客户端进行选择,或者是伴随着用户对表述性内容的操作而进行。状态转换由客户端对媒体类型的了解程度和资源通讯机制决定,或者受限于这些因素,这些问题都可以根据实际情况得以改善的(例如使用javascript这种code-on-demand技术)。[ 不符合这一点意味着交互是由其它信息驱动,而不是超文本 ]

 

There are probably other rules that I am forgetting, but the above are the rules related to the hypertext constraint that are most often violated within so-called REST APIs. Please try to adhere to them or choose some other buzzword for your API.

也许还有其它一些规则我一时想不起来了,但在那些所谓的REST API中通常都违背了上面这些超文本约束相关的规则,请纠正这些错误或者改用其它称谓吧

 

程序的接口都明显的具备特定的目的,因此一上来可能就是请求特定的资源或者操作,但这就成了Roy T. Fielding理解的HTTP-based interface了

疑点之一:什么是typed resources、resource types、media types以及他们之间的区别

疑点之二:如何仅通过初始URI得到具体的资源,这样的REST API到底是什么样的一种形式?毕竟普通应用并不都是spider一样,通过root一路爬下去就行了

过几天再仔细看看原文回复讨论的内容

分享到:
评论

相关推荐

    spring-hateoas:Spring HATEOAS-支持超文本驱动的REST Web服务的实现表示的库

    该项目提供了一些API,可简化与Spring尤其是Spring MVC一起使用时遵循原理的REST表示形式的创建。 它试图解决的核心问题是链接创建和表示组装。 使用Spring HATEOAS 由于所有提交均以其github问题为标题,因此git...

    原创-REST原理及Opendaylight应用--冀烨

    超文本驱动(Hypertext Driven)** - **定义**: REST架构中的资源可以通过超链接来导航,即资源本身包含了链接到其他相关资源的信息。 - **作用**: 使客户端能够发现和访问更多资源,增强系统的灵活性和扩展性。 ...

    RESTful传感器API_Python_代码_相关文件_下载

    Chain API 建立在超文本应用程序语言或 HAL 之上。目前它只实现了 application/hal+json MIME 类型。hal+json 比较简单,客户端可以随意忽略 HAL,把响应当成常规的 JSON 数据。还有各种库可以利用 hal+json 约定来...

    为何在云平台中使用REST作为架构设计风格

    - 非功能性:包括超文本驱动(HATEOAS,即超媒体作为应用程序状态引擎)、连通性(Connectedness)、基于HTTP的统一接口(Uniform Interface)以及无状态性(Statelessness)。 在云平台中使用REST作为架构风格还...

    distro.as3lang.org:as3lang.org REST API

    3. **HTTP协议**:HTTP(超文本传输协议)是互联网上应用最为广泛的一种网络协议,REST API基于此协议,通过HTTP方法操作资源。 4. **JSON与XML**:这两种数据格式常用于REST API的数据交换,JSON更轻量级,适合...

    REST 服务开发

    - **REST 是由超文本驱动的**,而 RPC 是由方法驱动的。 - **REST 强调 HTTP 通信的语义可见性**,通过HTTP方法和消息头来表达语义,而 RPC 将语义封装在消息体中。 #### REST 的应用场景 - **适合场景**: - ...

    RESTFUL_API_设计开发

    4. **超文本驱动**:API 必须能够通过超文本链接到其他资源。 #### 六、Java RESTful API 开发 1. **JSR-311 (JAX-RS)**:这是一个 Java 规范,用于定义 RESTful Web 服务的开发。 2. **主要特性**: - **POJO ...

    SB_connection_ver1.1.pptx

    * HTTP和HTTPS:超文本传输协议和安全超文本传输协议,用于网络通信。 * REST(Representational State of Resource):一种架构风格,用于设计网络应用程序。 * API(Application Programming Interface):应用...

    PG6301 Web 开发和 API 设计课程代码

    3. **HTTP协议**:理解HTTP(超文本传输协议)是Web开发的关键。它定义了客户端(浏览器)与服务器之间的通信方式,包括请求方法(GET、POST等)、状态码(200、404等)以及请求头和响应头。 4. **RESTful API设计*...

    spring-data-rest-mongodb

    Spring Data REST支持超文本驱动的应用程序(HATEOAS),这意味着资源之间通过链接关联,增强了资源发现能力。你可以通过`@Link`和` HAL`模型来管理这些链接。 7. **安全性和授权**: 为了保护你的REST服务,可以...

    方案_1_3:UI和API

    在HTML(超文本标记语言)的帮助下,开发者可以构建静态的网页结构,它是Web页面的基础框架。HTML通过一系列标签定义了网页内容的结构,如`<head>`、`<body>`、`<header>`、`<nav>`、`<section>`、`<article>`、`...

    Building Hypermedia APIs with HTML5 and Node

    这个理念最早由计算机科学先驱Vannevar Bush在1945年提出,后来随着互联网的普及,特别是由Tim Berners-Lee和Ted Nelson等人对超文本和超媒体概念的进一步发展,使得超媒体技术成为Web开发的核心部分。 Mike ...

    (完整版)JAVA中常用英文单词简写释义.pdf

    * HTTP (Hypertext Transfer Protocol):超文本传输协议,是一种用于网页浏览器和服务器之间通信的协议。 * FTP (File Transfer Protocol):文件传输协议,是一种用于将文件从一台计算机传输到另一台计算机的协议。 ...

    一个前端框架,用于在 REST/GraphQL API 之上构建在浏览器中运行的 B2B 应用程序,使用 ES6、React 和 Material Design

    react-admin 一个前端框架,用于在 REST/GraphQL API 之上构建在浏览器中运行的数据驱动应用程序,使用 ES6、React 和 Material Design。 以前称为 admin-on-rest。 由 marmelab 开源和维护。 主页 - 文档 - 演示 - ...

    traverson:用于Node.js和浏览器的Hypermedia APIHATEOAS客户端

    这样的API(有时也称为超媒体或超文本驱动的API)通常具有根资源/端点,该根资源/端点发布到其他资源的链接。 这些资源反过来也可能具有链接到相关资源,作为其元数据的一部分。 有时,您需要遵循多个连续的链接...

    网络编程技术.rar

    6. **HTTP协议**:超文本传输协议(HTTP)是最常见的应用层协议,用于Web浏览器和服务器之间的通信。了解HTTP方法(GET、POST、PUT、DELETE等)和状态码对于开发Web应用至关重要。 7. **HTTPS安全协议**:HTTPS是...

    Vincent -- Django for APIs -- 2022.pdf

    通过创建一个博客API的例子,本书展示了如何处理自定义用户模型、多应用管理、测试驱动开发等高级主题。同时,也涉及到了部署相关的知识点,如静态文件处理、Heroku平台的部署步骤等。 ##### 7. **权限管理** 这一...

    testing-express-app-apis-with-sequelize-using-jest-and-supertest:实验超集和玩笑以使用Sequelize测试REST API

    1. **设置项目** - 首先,我们需要安装必要的依赖项,包括Express、Sequelize、相应的数据库驱动、Jest和Supertest。创建一个新的项目文件夹,然后在`package.json`中添加这些依赖。 2. **初始化数据库连接** - ...

Global site tag (gtag.js) - Google Analytics