Is there a length limit of characters for an HTTP GET requests?

link|improve this question
feedback

5 Answers

Not in the RFC, no, but there are practical limits.

The HTTP protocol does not place any a priori limit on the length of a URI. Servers MUST be able to handle the URI of any resource they serve, and SHOULD be able to handle URIs of unbounded length if they provide GET-based forms that could generate such URIs. A server SHOULD return 414 (Request-URI Too Long) status if a URI is longer than the server can handle (see section 10.4.15).

Note: Servers should be cautious about depending on URI lengths above 255 bytes, because some older client or proxy implementations may not properly support these lengths.

link|improve this answer
HTTPbis adds a bit to this: "Various ad-hoc limitations on request-target length are found in practice. It is RECOMMENDED that all HTTP senders and recipients support request-target lengths of 8000 or more octets." tools.ietf.org/html/… – Mark Nottingham Nov 16 '11 at 2:04
feedback

This sums it up pretty well:

http://www.boutell.com/newfaq/misc/urllength.html

Summary: It's implementation dependent, as there is no specified limit in the RFC. It'd be safe to use up to 2000 characters (IE's limit.) If you are anywhere near this length, you should make sure you really need URIs that long, maybe an alternative design could get around that.

URIs should be readable, even when used to send data.

link|improve this answer
Good writeup, but URI readability has nothing to do with GET vs POST. The purpose is to define a RESTful API for the web that differentiates between the functional differences of request types. HTTP GET requests may tend to be user readable for hyperlinks, but that's not their purpose, just one use. w3.org/Protocols/rfc2616/rfc2616-sec9.html#sec9.3 – DougW Feb 10 at 5:52
The purpose of URIs are not to define a RESTful API for the web. At all. w3.org/Provider/Style/URI.html – Vinko Vrsalovic Feb 10 at 11:22
Correct. The purpose of GET & POST however, is. The question is asking about HTTP GET requests. You're assuming he means hyperlinks found on a website, intended for human readability. That's one particular usage of GET HTTP, but far from the only one. – DougW Feb 10 at 19:19
Nope, that's not the purpose of GET & POST. The REST architecture was invented long after the invention of the GET and POST methods of HTTP. Also, even when doing a REST app I'd argue strongly in favor of having, whenever possible, readable URIs. See redrata.com/restful-uri-design – Vinko Vrsalovic Feb 16 at 11:42
Sorry but you're simply misinformed here. REST was concieved to describe the HTTP protocol, so while the term itself may post-date GET & POST, it exists solely to describe what they're for and what they do. I've got to appeal to authority here, because you're not arguing with me on this, you're arguing with Roy Fielding who wrote the HTTP spec and invented "REST". Again, the article you linked is concerned with human-readable URIs, which represents a small fraction of HTTP usage: "Short (as possible). This makes them easy to write down or spell or remember.". – DougW Feb 17 at 0:02
show 4 more comments
feedback

The specification does not limit the length of an HTTP Get request but the different browsers implement their own limitations. For example Internet Explorer has a limitation implemented at 2083 characters.

link|improve this answer
Thanks for your accurate value => +1. However what is the specific version of IE? My IE8 does not accept more than 2048 characters on the address bar (URL entry box). But my JavaScript code can send XMLHttpRequest GET using 3586 characters (I did not test more). Therefore, where have you found 2083? Cheers. – oHessling Mar 15 at 8:59
feedback

W3C unequivocally disclaimed this as a myth here

http://www.w3.org/2001/tag/doc/get7#myths

link|improve this answer
feedback

setFixedLengthStreamingMode(int) with contentLength parameters could set the fixed length of a HTTP request body.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown