content type 'application/x-ww-form-urlencoded;charset=UTF-8 not support
时间: 2023-11-08 07:04:36 浏览: 148
浅析application/x-www-form-urlencoded和multipart/form-data的区别
这个错误通常是由于请求头中的Content-Type不正确导致的。正确的Content-Type应该是'application/x-www-form-urlencoded;charset=UTF-8',请确保请求头中的Content-Type字段设置正确。此外,还需要确保请求体的格式符合x-www-form-urlencoded的要求。
如果你使用的是curl命令发送请求,可以通过以下方式指定正确的Content-Type:
```
curl -X POST -H "Content-Type: application/x-www-form-urlencoded;charset=UTF-8" -d "param1=value1¶m2=value2" URL
```
阅读全文