我正在镜像另一个请求,所以我有一个包含所有标头的数组。我将每个添加"url".WithHeaders(headersDictionary)
。
但是当我测试请求时,我在Connection
标头中得到了第二个值。
请求是这样的:
req = ("https://httpbin.org/post").WithHeaders(headers).WithTimeout(60)
req.SendAsync(New Net.Http.HttpMethod("POST"), New Net.Http.StringContent(postData))
还有其他标题可以自动添加或修改吗?例如,像Expect100-Continue
。