错误:
错误提示:{“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”);
再次请求,返回成功结果!