我想在 C# 中使用 webclient 发布一个帖子,我在请求之前添加了这一行:
var data = new NameValueCollection
{
{ "UserName", un },
{ "Password", pw },
};
client.Headers.Add("Content-Type", "application/json");
并得到错误:
Content-Type 标头无法更改此请求的默认值。
我这样做的原因是我想在 json 中获得响应,