vote up 2 vote down star
2

I'm developing a new REST-full webservice for our application.

When doing a GET on certain entities, clients can request the contents of the entity. If they want to add some parameters (for example sorting a list) they can add these parameters in the query string.

Alternatively I want people to be able to specify these parameters in the request body. HTTP/1.1 does not seem to explicitly forbid this. This will allow them to specify more information, might make it easier to specify complex xml requests.

My questions:

  • Is this a good idea altogether?
  • Will HTTP clients have issues with using request bodies within a GET request?

http://tools.ietf.org/html/rfc2616

flag

What's the advantage of putting the params in the request body? – Rich Apodaca Jun 10 at 20:55
The advantage is that allows easily sending XML or JSON request bodies, it doesn't have a length restriction and it's easier to encode (UTF-8). – Evert Jun 10 at 21:51

6 Answers

vote up 8 vote down check

While you can do that, insofar as it isn't explicitly precluded by the HTTP specification, I would suggest avoiding it simply because people don't expect things to work that way. There are many phases in an HTTP request chain and while they "mostly" conform to the HTTP spec, the only thing you're assured is that they will behave as traditionally used by web browsers. (I'm thinking of things like transparent proxies, accelerators, A/V toolkits, etc.)

This is the spirit behind the Robustness Principle roughly "be liberal in what you accept, and conservative in what you send", you don't want to push the boundaries of a specification without good reason.

However, if you have a good reason, go for it.

link|flag
vote up 0 vote down

I wouldn't advise this, it goes against standard practices, and doesn't offer that much in return. You want to keep the body for content, not options.

link|flag
vote up 4 vote down

You will likely encounter problems if you ever try to take advantage of caching. Proxies are not going to look in the GET body to see if the parameters have an impact on the response.

link|flag
Good answer; I'll find a way around it – Evert Jun 10 at 21:50
vote up 0 vote down

Perhaps I am missing the point, but why don't you use a POST instead if you want to send the data in the body and not the URL?

link|flag
POST, GET, DELETE and PUT all have very different meanings.. POST is already used on some urls for a different purpose. – Evert Jun 10 at 21:49
vote up 0 vote down

What you're trying to achieve has been done for a long time with a much more common method, and one that doesn't rely on using a payload with GET.

You can simply build your specific search mediatype, or if you want to be more RESTful, use somehting like OpenSearch, and POST the request to the URI the server instructed, say /search. The server can then generate the search result or build the final URI and redirect using a 303.

This has the advantage of following the traditional PRG method, helps cache intermediaries cache the results, etc.

That said, URIs are encoded anyway for anything that is not ascii, and so are application/x-www-form-urlencoded and multipart/form-data. I'd recommend using this rather than create yet another custom json format if your intention is to support ReSTful scenarios.

link|flag
vote up 0 vote down

Roy Fielding's comment about including a body with a GET request. Yes, you can send a request body with GET but the server will ignore it.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.