我正在尝试使用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);