C# 中HttpClient无法发送json对象

Posted aofengdaxia

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C# 中HttpClient无法发送json对象相关的知识,希望对你有一定的参考价值。

使用场景

在C#开发过程中经常会遇到调用API接口的情况,特别是wpf和后台通信。而被调用的接口只接受json字符串。

public String Post(string url, object obj)

	using(var client = new HttpClient())
	
		try
		
			var str = JsonConvert.SerializeObject(user);
			var content = new StringContent(str,Encoding.UTF8,"application/json");
			HttpResponseMessage response = 
			await client.PostAsync(url, content);
	        response.EnsureSuccessStatusCode();//用来抛异常的
	        string responseBody = await response.Content.ReadAsStringAsync();
	        return responseBody;
	    catch(Exception ex)
	    
	    
	    return null;

出现问题

服务器端使用java开发的API,调试发现无法收到传过来的json对象。但是使用Postman调用的时候,服务器端接受正常。

经过wpf端断点调试发现,在传递的content中contentType为 application/text.

解决办法

修改后的代码如下

public String Post(string url, object obj)

	using(var client = new HttpClient())
	
		try
		
			var str = JsonConvert.SerializeObject(user);
			var content = new StringContent(str,Encoding.UTF8,"application/json");
			content.Headers.ContentType = System.Net.Http.Headers.MediaTypeHeaderValue("application/json"); //增加这句以后,后台接受正常
			HttpResponseMessage response = 
			await client.PostAsync(url, content);
	        response.EnsureSuccessStatusCode();//用来抛异常的
	        string responseBody = await response.Content.ReadAsStringAsync();
	        return responseBody;
	    catch(Exception ex)
	    
	    
	    return null;

增加content.Headers.ContentType = System.Net.Http.Headers.MediaTypeHeaderValue("application/json"); 后代码正常。

优化

可以把StringContent部分单独列出来作为一个JsonContent类,方便调用。

class JsonContent: StringContent

     public JsonContent(object obj) :
        base(JsonConvert.SerializeObject(obj), Encoding.UTF8, "application/json")
     
        this.Headers.ContentType = new System.Net.Http.Headers.MediaTypeHeaderValue("application/json");
     


以上是关于C# 中HttpClient无法发送json对象的主要内容,如果未能解决你的问题,请参考以下文章

C# 中HttpClient无法发送json对象

C# 中HttpClient无法发送json对象

使用 HttpClient 和 C# 在 post 请求中发送 json

C# 使用 HttpClient 从 JSON 响应中获取特定对象

C# HttpClient:如何在 POST 请求中发送查询字符串

HttpClient向api发送空值,而不是查看json对象