I've just been reading about REST URLs and seen the following example:
/API/User/GetUser
Now if this is accessed over HTTP with a verb GET isn't this a bad URL becuase it describes the action (GET) in the URL?
|
I've just been reading about REST URLs and seen the following example: /API/User/GetUser Now if this is accessed over HTTP with a verb GET isn't this a bad URL becuase it describes the action (GET) in the URL? |
|||||||||
|
|
GET POST to PUT to DELETE to As others have said, REST is not a hard and fast rule, more an approach. Use the http verbs to achive actions based upon a resource location (URL). But mostly do what is most appropriate for your needs. EDIT: Remember though, the verbs are about defining the intended semantics of the communication and not the server implementation. |
|||||||||||||||||
|
|
It's more of a convention, than a hard rule, but I would rather see something like Here's some good stuff: http://stackoverflow.com/questions/2001773/understanding-rest-verbs-error-codes-and-authentication |
|||||||||||||||||
|
|
Better way would be to have /API/User/7123 and use GET/POST method to signify operations |
|||
|
|
|
This is not necessarily bad... it has more to do with the framework you are using to generate your rest URLs. The link @Infinity posted is a good resource, but don't limit yourself to a set theory because it can cause an excessive amount of work in certain frameworks. For example, there is no reason why you wouldn't want to run a GET on /API/Users/{id}/Delete to display an "are you sure" type of message before using the DELETE method. |
|||
|
|
|
There is no such thing as a REST URL. In fact, the word REST URL is pretty much an oxymoron. The Hypermedia As The Engine Of Application State Constraint guarantees that URLs are irrelevant: you are only ever following links presented to you by the server, anyway. You never see, read or type a URI anywhere. (Just like browsing the web: you don't look at the URL of a link, read it, memorize it and then type it into the address bar; you just click on it and don't care what it actually says.) The term REST URL implies that you care about your URLs in your REST architecture. However, if you care about your URLs in your REST architecture, you are not RESTful. Therefore, REST URL is an oxymoron. [Note: Proper URI design is very important for the URI-ness of a URI, especially the I part. Also, there's plenty of good usability reasons for pretty URLs. But both of these have nothing whatsoever to do with REST.] |
|||||||||||
|
|
|
||||
|
|