自 48h00 以来非常大的问题。有了邮递员,邮寄我的尸体绝对没问题。返回 200。相关 api 没有身份验证。但是,当我使用我的 java 代码时,总是返回 400 !!!
String baseUrl = "myBaseUrl";
String uri = "myUri";
WebClient webClient = WebClient.create(baseUrl);
ClientResponse cresponse = webClient
.post()
.uri(uri)
.contentType(MediaType.APPLICATION_JSON_UTF8)
.syncBody(myObject)
.exchange()
.block();
// always 400!!!! here !!!!!!!
System.out.println("result :" + cresponse.statusCode());