org.springframework.web.HttpMediaTypeNotSupportedException: Content type application/x-www-form-urlencoded;charset=UTF-8 not supported
时间: 2023-10-21 12:32:50 浏览: 228
form-urlencoded:以x-www-form-urlencoded字符串的形式返回对象
5星 · 资源好评率100%
这个错误通常是因为你的请求头中指定的 Content-Type 不被支持。常见的 Content-Type 包括 application/json、application/xml、application/x-www-form-urlencoded 等。可以尝试修改请求头中的 Content-Type 为被支持的类型,或者检查服务端是否支持当前请求的 Content-Type。具体处理方式需要根据具体情况进行调整。
阅读全文