gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-01 19:44:16 25 4
gpt4 key购买 nike

我正在使用 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() 请求 header ,它将返回:

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

关于java - 如何获取此 GET 请求的 json 正文?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59144184/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com