Currently to send a parameterized GET request to an API interface I am writing the following code:
api/master/city/filter?cityid=1&citycode='ny'
But I see that there is a limit on the URL length of 2,083 characters.
To avoid this I would like to send the parameters in json format in the content body for a GET request.
However, I see that none of the Get methods for the HttpClient allow for a content body to be sent. For the POST I could see there is a method within HttpClient named PostAsync that allows for a content body.
Is there a way to send parameters for a GET request not in the URL in order to avoid the URL length limit?
Requests using GET should only be used to request data (they shouldn't include data). Note: Sending body/payload in a GET request may cause some existing implementations to reject the request — while not prohibited by the specification, the semantics are undefined.
Please read the caveats at the end of this answer as to why HTTP GET requests with bodies are, in general, not advised.
If you are using .NET Core, the standard HttpClient
can do this out-of-the-box. For example, to send a GET request with a JSON body:
HttpClient client = ... ... var request = new HttpRequestMessage { Method = HttpMethod.Get, RequestUri = new Uri("some url"), Content = new StringContent("some json", Encoding.UTF8, MediaTypeNames.Application.Json /* or "application/json" in older versions */), }; var response = await client.SendAsync(request).ConfigureAwait(false); response.EnsureSuccessStatusCode(); var responseBody = await response.Content.ReadAsStringAsync().ConfigureAwait(false);
.NET Framework doesn't support this out-of-the-box (you will receive a ProtocolViolationException
if you try the above code). Thankfully Microsoft has provided the System.Net.Http.WinHttpHandler package that does support the functionality - simply install and use it instead of the default HttpClientHandler
when constructing your HttpClient
instances:
var handler = new WinHttpHandler(); var client = new HttpClient(handler); <rest of code as above>
Reference: https://github.com/dotnet/runtime/issues/25485#issuecomment-467261945
Caveats:
I can't use .NET core and I don't want to install System.Net.Http.WinHttpHandler
, which has a ton of dependencies. I solved it by using reflection, to trick WebRequest
that it is legal to send body with a GET request (which is according to latest RFC). What I do is to set ContentBodyNotAllowed
to false for HTTP verb "GET".
var request = WebRequest.Create(requestUri); request.ContentType = "application/json"; request.Method = "GET"; var type = request.GetType(); var currentMethod = type.GetProperty("CurrentMethod", BindingFlags.NonPublic | BindingFlags.Instance).GetValue(request); var methodType = currentMethod.GetType(); methodType.GetField("ContentBodyNotAllowed", BindingFlags.NonPublic | BindingFlags.Instance).SetValue(currentMethod, false); using (var streamWriter = new StreamWriter(request.GetRequestStream())) { streamWriter.Write("<Json string here>"); } var response = (HttpWebResponse)request.GetResponse();
Note, however, that the attribute ContentBodyNotAllowed
belongs to a static field, so when its value changes, it remains in effect for the rest of the program. That's not a problem for my purposes.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With