“错误”:“无效的内容类型标题(预期'应用程序/ json')”放心

时间:2018-06-06 15:02:42

标签: rest-assured

当我尝试使用邮递员手动发帖时,我需要传递两个标题,我得到了预期的响应。

但在我的休息电话中使用两个标头会给我一个错误:"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");

我尝试使用标题(这有助于包含多个标题),但没有运气

0 个答案:

没有答案