当我尝试使用邮递员手动发帖时,我需要传递两个标题,我得到了预期的响应。
但在我的休息电话中使用两个标头会给我一个错误:"Invalid Content-Type header (expected 'application/json')"
rest().accept(ContentType.JSON).given()
.header("userId", "1a0a46f2-a64c-5e86-1a35-c388c47a881818")
.header("Content-Type","application/json")
.contentType("application/json")
.post("https://someSite");
我尝试使用标题(这有助于包含多个标题),但没有运气