当前位置:   article > 正文

C# StringContent Post 请求报 415 错误_stringcontent c#

stringcontent c#

C# StringContent Post 请求报 415 错误

错误:

错误提示:{“type”:“https://tools.ietf.org/html/rfc7231#section-6.5.13”,“title”:“Unsupported Media Type”,“status”:415,“traceId”:"|ca88308-41f99568b29230bc."}
请添加图片描述

解析:

按照提示,Unsupported Media Type,查看了下 StringContent 的默认 Media Type 为:“text/plain”
请添加图片描述

解决办法:

将 Media Type 修改为 “application/json” 就好了

具体写法:
var content = new StringContent("[1234]", Encoding.UTF8 , “application/json”);

再次请求,返回成功结果!

本文内容由网友自发贡献,转载请注明出处:https://www.wpsshop.cn/w/黑客灵魂/article/detail/847697
推荐阅读
相关标签
  

闽ICP备14008679号