hutool 请求第三方接口报错Content type 'application/x-www-form-urlencoded;charset=UTF-8
时间: 2023-12-06 20:33:46 浏览: 376
详解Http请求中Content-Type讲解以及在Spring MVC中的应用
这个错误提示表明请求的 Content-Type 不正确,应该是 application/json 或者 application/x-www-form-urlencoded。你可以尝试修改请求头中的 Content-Type,或者使用其他的请求库进行请求。
如果你使用的是 Hutool 的 HttpUtil 发送请求,可以通过以下方式设置 Content-Type:
```java
HttpRequest request = HttpUtil.createPost(url);
request.contentType("application/json");
request.body(jsonStr);
HttpResponse response = request.execute();
```
阅读全文