欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Postman报错Unsupported Media Type

程序员文章站 2022-07-12 20:29:00
...

使用POSTMAN调用接口的时候报了如下错误:

{
"timestamp": "2018-12-06T01:37:11.184+0000",
"status": 415,
"error": "Unsupported Media Type",
"message": "Content type 'text/plain;charset=UTF-8' not supported",
"path": "/testgu/ycyzharry"
}

问题原因:
Media Type,即是Internet Media Type,互联网媒体类型,也叫做MIME类型,在Http协议消息头中,使用Content-Type来表示具体请求中的媒体类型信息。
例如: Content-Type: text/html;charset:utf-8;

解决办法:选择“application/json”JSON数据格式类型发送Post请求,成功得到接口返回值。

Postman报错Unsupported Media Type

相关标签: BUG总结 http