0
私は残りのAPIを自動で安定させています。UnsupportedOperationException:無効なコンテンツタイプapplication/json
私はRESTクライアントで同じAPIをテストしましたが問題はありませんでしたが、Rest Assured
で自動化しているときに、無効なコンテンツタイプのエラーが発生しています。
私のREST APIは以下の通りです:
Response res = given()
.relaxedHTTPSValidation()
.body(model)
.with()
.contentType("application/json")
.then()
.post(ConfigReader.get("asset.temperature.push.url"));
return res.body().asString();
エラーは次のとおりです。
{"message":"Execution exception[[UnsupportedOperationException: Invalid content type. Content-Type should be application/json or text/json, receivedapplication/json; charset=UTF-8]]"}
これが原因で、内部アプリケーションで、問題である。この問題に