繁体   English   中英

如何获取此 GET 请求的 json 正文?

[英]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()请求标题,它会返回:

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

但是,我需要获取在我请求时返回 null 的响应主体。

response.getBody();

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

我如何显示身体?

我尝试将响应作为文件获取并存储。 这工作得很好。

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");

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM