请放心-如何检查我的防火墙是否阻止了特定的URL

时间:2018-10-22 07:04:28

标签: rest rest-assured

下面的URL在我的浏览器中生成一个JSON文件。但是,当我使用Rest Assured运行相同命令时,出现“ java.net.ConnectException:连接超时:连接”错误。我该如何确保不会因为我的防火墙而发生这种情况

RestAssured.baseURI = "http://restapi.demoqa.com/utilities/weather/city"    
RequestSpecification httpRequest = RestAssured.given();
Response response = httpRequest.request(Method.GET, "/Hyderabad");
String responseBody = response.getBody().asString();
System.out.println(responseBody);

0 个答案:

没有答案