在我的OwinMiddleware
中,我只是写出身体:
await context.Response.Body.WriteStringAsync("Hey There");
我在Fiddler得到的原始回应是:
HTTP/1.1 200 OK
Transfer-Encoding: chunked
Server: Microsoft-HTTPAPI/2.0
Date: Fri, 13 May 2016 16:00:07 GMT
A
/hey/there
5
there
9
Hey There
26
{ec86d5c7-4ea4-437f-be2a-4e294b655227}
0
Fiddler说这是编码的(有消息说请点击这里解码)
单个字母和数字不是我的。我用大括号写了/hey/there
和there
以及Hey There
和Guid
。
我如何获得纯文本回复?