最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

json - How can I find valid certification path to requested target? - Stack Overflow

programmeradmin5浏览0评论

I am getting the following error when executing my code.

Error : unable to find valid certification path to requested target

Expecting to be able to reach API endpoint and POST my JSON payload saved in .json file in my project.

  package Tests;

    import java.io.IOException;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    import static io.restassured.RestAssured.given;
    import io.restassured.RestAssured;
    import io.restassured.response.Response;
    import io.restassured.specification.RequestSpecification;

    public class ReadJasonFile {

    public static void main(String[] args) throws IOException {
        
    //Credential variables
    String username = "MyUserName";
    String password = "MyPassword";
        
    RestAssured.baseURI = "MyBaseURI";
    RequestSpecification httpRequest =   
         RestAssured.given().auth().preemptive().basic(username, password);
    byte[] inp =Files.readAllBytes(Paths.get("MyFile.json"));
    String inputvalue = new String(inp);
        
    String response = given().header("Content-Type" , "application/json").body(inputvalue).
    when().post("RestOfMyEndPOintURL")
       .then().log().all().assertThat().statusCode(200).extract().response().asString();
发布评论

评论列表(0)

  1. 暂无评论