我正在尝试为外部API创建PUT请求,并将整数数组作为请求主体。当通过PostMan(Chrome扩展程序)直接发布到相关的外部API时,它可以正常工作。这是请求:
PUT /rest/*****?skipconfig=true HTTP/1.1
Host: ******:****
Authorization: Basic **********
Content-Type: application/json; charset=utf-8
Cache-Control: no-cache
[1214186,1214052,1214333,1213983,1214332,1214332]
然而,当我尝试使用.NET的HttpClient创建相同的请求时,外部API在大约10秒后抛出服务器错误500,让我怀疑HttpClient以某种模糊的方式改变了请求,这使得外部API读取请求错误。这是我的示例代码:
var json = JsonConvert.SerializeObject(intArray);
HttpClient client = new HttpClient();
client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Basic", SvcCredentials);
var content = new StringContent(json, Encoding.UTF8, MediaTypeHeaderValue.Parse("application/json; charset=utf-8").MediaType);
// List data response.
var uri = new Uri(BaseUrl + "/rest/*****?skipconfig=true", UriKind.Absolute);
HttpResponseMessage response = await client.PutAsync(uri, content);
if (response.IsSuccessStatusCode)
{
// Parse the response body.
return response.Content.ReadAsAsync<object>().ToString();
}
throw new Exception(response.StatusCode.ToString());
我在这里缺少什么?我尝试用URI对象和URL字符串来调用PutAsync方法。
答案 0 :(得分:1)
好吧,所以我找到了这个问题的原因。
经过一些研究,我能够使用fiddler中的一个简单选项解密HTTPS请求。
事实证明,StringContent(json, Encoding.UTF8, MediaTypeHeaderValue.Parse("application/json; charset=utf-8").MediaType);
在幕后添加了“Content-Length”标题。这个标题是另一端服务器错误的原因(不要问我为什么)。