无法发送具有此谓词类型的内容正文 RestSharp使用日志

在使用RestSharp调用Api的时候,出现如下错误:

无法发送具有此谓词类型的内容正文

经过网上搜索,发现问题所在行:

request.AddHeader("Content-Type", baseRequest.ContentType);

 

修改成如下即可:

            if (baseRequest.Method != Method.Get)
            {
                request.AddHeader("Content-Type", baseRequest.ContentType);
            }

就是在Get的时候不添加Content-Type。

posted @ 2022-11-02 22:59  星星c#  阅读(680)  评论(0编辑  收藏  举报