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

多鲁斯·布兰肯

我正在使用 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");

本文收集自互联网,转载请注明来源。

如有侵权,请联系 [email protected] 删除。

编辑于
0

我来说两句

0 条评论
登录 后参与评论

相关文章