在使用RestSharp调用Api的时候,出现如下错误:
无法发送具有此谓词类型的内容正文
经过网上搜索,发现问题所在行:
request.AddHeader("Content-Type", baseRequest.ContentType);
修改成如下即可:
if (baseRequest.Method != Method.Get) { request.AddHeader("Content-Type", baseRequest.ContentType); }
就是在Get的时候不添加Content-Type。
标签:正文,Content,谓词,日志,RestSharp,Type,baseRequest From: https://www.cnblogs.com/wjx-blog/p/16852886.html