Why is the REST web service called REST

What does “Pass View State" mean that current REST web services are called like this?

+4
source share
2 answers

One of the best explanations for REST is How to get a cup of coffee .

Edit: It is called REST because the client initiates the transfer of client state representations.

+7
source

http://en.wikipedia.org/wiki/Representational_state_transfer said

REpresentational State Transfer (REST) ​​is an architecture style software for distributed systems such as the World Wide Web. REST has become the predominant web service design model.


A RESTful web service (also called a RESTful web interface) is a web service implemented using HTTP and REST principles . This is a set of resources with four specific aspects:

  • Base URI for a web service such as http://example.com/resources/
  • The type of Internet storage medium supported by the web service. This is often XML, but can be any other valid type of Internet media that is a valid hypertext standard.
  • The set of operations supported by the web service using HTTP (for example, GET, PUT, POST, or DELETE).
  • The API must be hypertext driven.
+1
source

Source: https://habr.com/ru/post/1437804/