声明:本文章部分引用csdn作者“秤秤biubiu”的《Postman报错Unsupported Media Type》,链接:Postman报错Unsupported Media Type_疯猫-CSDN博客
一、报错示例:
{
"type": "zx1890.com/problem-with-message",
"title": "Unsupported Media Type",
"status": 415,
"detail": "Content type 'application/xml;charset=UTF-8' not supported",
"path": "/admin/data/export/company",
"message": "error.http.415"
}
二、问题原因及扩展
(1)原因
Media Type,即是Internet Media Type,互联网媒体类型,也叫做MIME类型,有时在一些协议的消息头中叫做“Content-Type”。它使用两部分标识符来确定一个类型。
例如: Content-Type: text/html;charset:utf-8;
(2)扩展
常见的媒体格式类型如下:
text/html :HTML格式 text/plain :纯文本格式 text/xml :XML格式 image/gif :gif图片格式 image/jpeg :jpg图片格式 image/png :png图片格式
以application开头的媒体格式类型:
application/xhtml+xml :XHTML格式 application/xml :XML数据格式 application/atom+xml :Atom XML聚合格式 application/json :JSON数据格式 application/pdf :pdf格式 application/msword :Word文档格式 application/octet-stream :二进制流数据(如常见的文件下载) application/x-www-form-urlencoded :<form encType=””>中默认的encType,form表单数据被编码为key/value格式发送到服务器(表单默认的提交数据的格式)
另外一种常见的媒体格式是上传文件之时使用的:
multipart/form-data :需要在表单中进行文件上传时,就需要使用该格式
以上就是我们经常会用到的content-type的内容格式。通过此例中message信息,表示该post请求不支持“text/plain”纯文本格式类型。
三、解决方法
修改请求Body->raw的数据类型为JSON,如下图: