如何获取此 GET 请求的 json body?

How can i get the json body of this GET request?

我正在使用 Dank Memer imgen api 来处理图像。 为了执行 GET 请求,我使用了 Unirest-Java。 (https://kong.github.io/unirest-java/)

代码如下所示:

HttpResponse<JsonNode> response = Unirest.get("https://dankmemer.services/api/changemymind")
                  .header("Authorization", "tokenhere")
                  .queryString("text", "I am a human")
                  .asJson();

如果我用 response.getHeaders() 请求 Headers 它 returns 这个:

Date: Mon, 02 Dec 2019 17:07:08 GMT
Content-Type: image/jpeg
Transfer-Encoding: chunked
Connection: keep-alive
Set-Cookie: __cfduid=dd737927432f802b76c89b2fa8ee72e171575306428; expires=Wed, 01-Jan-20 17:07:08 GMT; path=/; domain=.dankmemer.services; HttpOnly; Secure
Cache-Control: public, max-age=43200
Expires: Tue, 03 Dec 2019 05:07:08 GMT
X-RateLimit-Limit: 5
X-RateLimit-Remaining: 4
X-RateLimit-Reset: 1575306429645
X-Global-RateLimit-Limit: 300
X-Global-RateLimit-Remaining: 299
X-Global-RateLimit-Reset: 1575306488643
CF-Cache-Status: DYNAMIC
Expect-CT: max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"
Server: cloudflare
CF-RAY: 53eee53a48a5d709-FRA

但是我需要得到 body 的响应,当我请求它时 returns 为 null。

response.getBody();

// returns null.
// Also returns null when i put:  response.getBody.toString();

如何显示 body?

我尝试将响应作为文件获取并存储。 这非常有效。

HttpResponse<File> response = Unirest.get("https://dankmemer.services/api/changemymind")
                  .header("Authorization", "tokenhere")
                  .queryString("text", "i am a human" )
                  .asFile("C:\Users\PC\Some Folder\changemymind.jpg");