我正在尝试使用 javax 进行 POST。不断收到 400 错误请求响应代码。这表明发送的 json 有问题(?)我检查了 json 一百次,对我来说看起来不错。我错过了什么?
在此处输入代码
Client client = ClientBuilder.newClient();
Entity payload = Entity.json("{ 'offset': 0, 'limit': 15, 'query': 'ad', 'search_type': 'global'}");
Response response = client.target("https:******/contacts/search")
.request(MediaType.APPLICATION_JSON_TYPE)
.header("Accept", "application/json")
.header("authToken", ACCESS_TOKEN)
.post(payload);