我正在尝试 RestAssured 并写了以下陈述 -
String URL = "http://XXXXXXXX";
Response result = given().
header("Authorization","Basic xxxx").
contentType("application/json").
when().
get(url);
JsonPath jp = new JsonPath(result.asString());
在最后一条语句中,我收到以下异常:
org.apache.http.ConnectionClosedException: Premature end of chunk coded message body: closing chunk expected
我的回复中返回的标题是:
Content-Type → application/json; qs=1
Date → Tue, 10 Nov 2015 02:58:47 GMT
Transfer-Encoding → chunked
任何人都可以指导我解决此异常并指出我是否遗漏任何内容或任何不正确的实现。