放心 + 无法解析 JSON 文档

Restassured + Failed to parse the JSON document

通过放心库执行 POST 时,出现以下错误:-

放心 + 无法解析 JSON 文档 + groovy.json.JsonException:Lexing 在行:1,列:1 上失败,同时读取 'h',不可能有效 JSON 可以识别值或标点符号。

负载在 'Payload' class 中提到。请帮我解决这个 JSON 解析问题。 我能够成功 POST,但是在通过 Jsonpath class 检索数据时,它抛出了主题行中提到的错误。

package files;

import org.testng.annotations.Test;

import io.restassured.RestAssured;
import io.restassured.path.json.JsonPath;

import static io.restassured.RestAssured.*;

public class DynamicJson {

    @Test
    public void addBook(){

        String response1 = RestAssured.baseURI="http://216.10.245.166";
        given().log().all().header("Content-Type","application/json")
        .body(Payload.Addbook())
        .when().post("Library/Addbook.php")
        .then()
        .log().all().assertThat().statusCode(200)
        .extract().response().asString();


        JsonPath js1 = new JsonPath(response1);
        String id = js1.get("ID");
        System.out.println(id);





    }

}

package files;

public class Payload {


    public static String Addbook(){

        String payload = "{\r\n" + 
                "   \"name\":\"Learn Appium Automation with Java\",\r\n" + 
                "   \"isbn\":\"bcd\",\r\n" + 
                "   \"aisle\":\"29k27\",\r\n" + 
                "   \"author\":\"John foe\"\r\n" + 
                "}";
        return payload;

    }
}

这是一个很小的错误

您正在解析字符串 response1 上的 JSON,这是不正确的

将其更改为

String response1 = RestAssured.baseURI="http://216.10.245.166";

RestAssured.baseURI = "http://216.10.245.166";
String response1 = given().header().....

您的其余代码没问题