I learned the term \"RESTful\" as a Rails developer. After reading wikipedia, also here and here.
I don\'t get it. It seems to me, Rails is only using a concise<
A GET
request should be idempotent and the request should not leave any side-effects on the server. Quoting from the HTTP spec sec 9.1.1:
In particular, the convention has been established that the
GET
andHEAD
methods SHOULD NOT have the significance of taking an action other than retrieval. These methods ought to be considered "safe". This allows user agents to represent other methods, such asPOST
,PUT
andDELETE
, in a special way, so that the user is made aware of the fact that a possibly unsafe action is being requested.
Therefore GET /delete?student_id=3
already violates the idempotency assumption of the GET
verb, since it will delete a record on the server.
A RESTful interface is a uniform interface, which in other words means that a GET
is supposed to behave as required by the HTTP spec. And this is what the spec says:
The
GET
method means retrieve whatever information (in the form of an entity) is identified by the Request-URI. If the Request-URI refers to a data-producing process, it is the produced data which shall be returned as the entity in the response and not the source text of the process, unless that text happens to be the output of the process....