So, I created a HttpClient
and am posting data using HttpClient.PostAsync()
.
I set the HttpContent
using
HttpContent content = new FormUrlEncodedContent(post_parameters)
; where post_parameters
is a list of Key value pairs List<KeyValuePair<string, string>>
Problem is, when the HttpContent
has a large value (an image converted to base64 to be transmitted) I get a URL is too long error. That makes sense - cause the url cant go beyond 32,000 characters. But how do I add the data into the HttpContent
if not this way?
Please help.
FormUrlEncodedContent
internally usesUri.EscapeDataString
: from reflection, I can see that this method has constants limiting the size of request length.A possible solution is to create a new implementation of
FormUrlEncodedContent
by usingSystem.Net.WebUtility.UrlEncode
(.net 4.5) to bypass this limitation.To send large content, it's better to use StreamContent.
This code works for me, basically you send post data "application/x-www-form-urlencoded" within string content over http client, hope this can help anyone with the same problem like me
I figured it out with the help of my friend. What you would want to do is avoid using FormUrlEncodedContent(), because it has restrictions on the size of the uri. Instead, you can do the following :
Here, we don't need to use HttpContent to post to the server, StringContent gets the job done !