Я попытался в почтальоне успешно, добавив заголовок «Content-Type = application / x-www-form-urlencoded» с телом x-www-form-urlencoded. По-видимому, я впервые работал над отдыхом.Пожалуйста, сообщите мне, что ниже мой код правильный или нет.Спасибо.
RestAssured.baseURI = AssignConfig.app.getProperty("RestURL");
Response request = RestAssured
.given()
.config(RestAssured.config()
.encoderConfig(EncoderConfig.encoderConfig()
.encodeContentTypeAs("x-www-form-urlencoded", ContentType.URLENC)))
.contentType("application/x-www-form-urlencoded; charset=UTF-8")
.header("Content-Type", "application/x-www-form-urlencoded")
.formParam("login","userName")
.formParam("password","password")