我正在 TransferMode.Streamed HttpSelfHostConfiguration exe 中使用 WebApi 编写代理。
当我使用提琴手发布到我的 ApiController 时,由于某种原因我无法读取 Request.Content - 即使我已经发布了数据,它也会返回“”
public class ApiProxyController : ApiController
{
public Task<HttpResponseMessage> Post(string path)
{
return Request.Content.ReadAsStringAsync().ContinueWith(s =>
{
var content = new StringContent(s.Result); //s.Result is ""
CopyHeaders(Request.Content.Headers, content.Headers);
return Proxy(path, content);
}).Unwrap();
}
private Task<HttpResponseMessage> Proxy(string path, HttpContent content)
{
...
}
}
这是我的网络请求
POST http://localhost:3001/api/values HTTP/1.1
Host: localhost:3001
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Content-Type: application/json
Content-Length: 26
{ "text":"dfsadfsadfsadf"}
我做错了什么?为什么 s.Result 以空字符串而不是原始 json 形式返回?