gpt4 book ai didi

c# - 在 Web API 2 中读取 POST 请求正文

转载 作者:行者123 更新时间:2023-11-30 13:53:56 27 4
gpt4 key购买 nike

仅出于学习目的,我使用处理程序将所有 http 请求记录到我的 Web API 2 应用程序。

enum LogType {Information = 1, Warning = 2, Error = 3 }public class LogHandler: DelegatingHandler{    async protected override Task SendAsync(HttpRequestMessage httpRequest, CancellationToken cancellationToken)    {        Trace.WriteLine(httpRequest.ToString(), LogType.Information.ToString());        var response = await base.SendAsync(httpRequest, cancellationToken);        return response;    }}

这只是按如下方式打印请求 header :

Information: Method: POST, RequestUri: 'http://localhost:49964/school/title?number=1&name=swanand pangam', Version: 1.1, Content: System.Web.Http.WebHost.HttpControllerHandler+LazyStreamContent, Headers:{  Cache-Control: no-cache  Connection: keep-alive  Accept: text/csv  Accept-Encoding: gzip  Accept-Encoding: deflate  Host: localhost:49964  User-Agent: PostmanRuntime/7.1.1  Postman-Token: 074c3aab-3427-4368-be25-439cbabe0654  Content-Length: 31  Content-Type: text/plain}

但我还在 POST 正文中发送了一个未打印的 json 对象。我想同时打印标题和正文。此外,调试时我在“HttpRequestMessage”对象中找不到任何内容。

最佳答案

你应该阅读下面的内容

    // log request body
string requestBody = await httpRequest.Content.ReadAsStringAsync();
Trace.WriteLine(requestBody);

这将记录请求正文。

关于c# - 在 Web API 2 中读取 POST 请求正文,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50432772/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com