由于之前一直在做键值对post数据的提交,没遇到过json正文的提交,遇到的问题截图:
对于此种情况的post,我用 谷歌插件 PostMan 模拟试了下成功了,截图如下:
Postman插件在你选择了 JSON数据格式时候给你自动在header 里面加了这个 值:
在后台C#代码里面代码如下:
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(Url); request.Method = "POST"; request.ContentType = "application/json; charset=UTF-8"; request.CookieContainer = cookie; //cookie信息由CookieContainer自行维护
完事!
时间: 2024-10-08 23:41:01