从事自动化任务,我正在尝试测试托管在 webseal 服务器上的 web 服务。问题是我已经非常放心地尝试了所有方法来获取响应 json,但我得到的是身份验证屏幕 html。
这是我的一些非工作代码。我期望它是 json,但无论我运行什么身份验证方法,我都只能得到 webseal 的身份验证页面。
private String serviceTestGET(WebServiceTest serviceTest) {
System.out.println("Credential : " + userName + " -- " + password);
// RestAssured.
// RestAssured.authentication = basic(userName, password);
// RestAssured.authentication = digest(userId, password);
// RestAssured.authentication = oauth(consumerKey, consumerSecret,
// accessToken, secretToken);//form(userName, password);
// RestAssured.authentication = form(userId, password, config);
RestAssured.useRelaxedHTTPSValidation();
return given().get(serviceTest.getEntryPoint()).asString();
}