How to make HTTPS GET call with certificate in Rest-Assured java

In my case using “relaxed HTTPs validation” fixed my problem:

given().relaxedHTTPSValidation().when().post("https://my_server.com")

Leave a Comment