学习笔记之REST/RESTful

REST(Representational state transfer) - Wikipedia

  • https://en.wikipedia.org/wiki/Representational_state_transfer
  • REpresentational State Transfer (REST) is an architectural style that defines a set of constraints and properties based on HTTP. Web Services that conform to the REST architectural style, or RESTful web services provide interoperability between computer systems on the Internet. REST-compliant web services allow the requesting systems to access and manipulate textual representations of web resources by using a uniform and predefined set of stateless operations. Other kinds of web services, such as SOAP web services, expose their own arbitrary sets of operations.

rest(一种软件架构风格)_百度百科

  • https://baike.baidu.com/item/rest/6330506?fr=aladdin
  • REST即表述性状态传递(英文:Representational State Transfer,简称REST)是Roy Fielding博士在2000年他的博士论文中提出来的一种软件架构风格。它是一种针对网络应用的设计和开发方式,可以降低开发的复杂性,提高系统的可伸缩性。
  • 目前在三种主流的Web服务实现方案中,因为REST模式的Web服务与复杂的SOAP和XML-RPC对比来讲明显的更加简洁,越来越多的web服务开始采用REST风格设计和实现。例如,Amazon.com提供接近REST风格的Web服务进行图书查找;雅虎提供的Web服务也是REST风格的。

RESTful_百度百科

  • https://baike.baidu.com/item/RESTful/4406165
  • 一种软件架构风格、设计风格,而不是标准,只是提供了一组设计原则和约束条件。它主要用于客户端和服务器交互类的软件。基于这个风格设计的软件可以更简洁,更有层次,更易于实现缓存等机制。

REST API Tutorial

  • http://www.restapitutorial.com/

Azure REST API Reference | Microsoft Docs

  • https://docs.microsoft.com/en-us/rest/api/
原文地址:https://www.cnblogs.com/pegasus923/p/8650590.html