私は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
この例外を解決するために誰かが私を案内し、何かが欠けているか、間違った実装があれば指摘してもらえますか?