How to add "application/x-www-form-urlencoded" as Content-type in .Net httpClient – Asp.net
I cannot add Content-type as "application/x-www-form-urlencoded". There is throwing an error. Only for the this content-type. Thank You for the attention. using (var httpClient = new HttpClient()) { var request = new HttpRequestMessage { Method = new HttpMethod("POST"), RequestUri =…