Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Give me a example of non-RESTful design?

Tags:

rest

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 way to describe URLs. It seems to me every URI is RESTful, in it's designed scope.

For example, I think GET /delete?student_id=3 is RESTful in the scope the the application itself.

Can anybody tell me which constrict does it violate? Please refer the constrict from the REST definition.

like image 345
Cheng Avatar asked Oct 08 '10 09:10

Cheng


1 Answers

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 and HEAD 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 as POST, PUT and DELETE, 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.

...

like image 55
Daniel Vassallo Avatar answered Nov 13 '22 05:11

Daniel Vassallo