gpt4 book ai didi

java - 使用 GET 调用将 json 作为数据发送

转载 作者:行者123 更新时间:2023-12-02 03:01:12 27 4
gpt4 key购买 nike

我可以看到以下curl命令可以远程运行:

curl -X GET -d '{"begin":22, "end":33}' http://myRemoteApp.com:8080/publicApi/user/test/data

但是根据 http://curl.haxx.se/docs/manpage.html 的文档,

-d, --data

(HTTP) Sends the specified data in a POST request to the HTTP server, in the same way that a browser does when a user has filled in an HTML form and presses the submit button. This will cause curl to pass the data to the server using the content-type application/x-www-form-urlencoded. Compare to -F, --form.

那么如果我们使用 -d 来发布数据,GET 如何与curl 一起工作?

此外,也没有 HttpUrlConnection 方法OR ReSTLet 方法在 GET 调用中发送 json。有吗?

最佳答案

根据 curl 文档,-X 强制方法字为特定值,无论它是否会产生合理的请求。我们可以通过跟踪来运行 curl 来查看它在这种情况下实际发送的内容:

$ curl -X GET -d '{"begin":22, "end":33}' --trace-ascii - http://localhost:8080/
== Info: About to connect() to localhost port 8080 (#0)
== Info: Trying ::1... == Info: connected
== Info: Connected to localhost (::1) port 8080 (#0)
=> Send header, 238 bytes (0xee)
0000: GET / HTTP/1.1
0010: User-Agent: curl/7.19.7 (x86_64-redhat-linux-gnu) libcurl/7.19.7
0050: NSS/3.14.3.0 zlib/1.2.3 libidn/1.18 libssh2/1.4.2
0084: Host: localhost:8080
009a: Accept: */*
00a7: Content-Length: 22
00bb: Content-Type: application/x-www-form-urlencoded
00ec:
=> Send data, 22 bytes (0x16)
0000: {"begin":22, "end":33}

所以这个命令实际上确实导致curl发送带有消息正文的GET请求。

This question对使用 GET 和请求正文进行了一些广泛的讨论。答案一致认为,发送带有消息正文的 GET 请求实际上并不违法,但您不能指望服务器关注正文。看来您使用的特定服务器确实处理这些请求,无论是由于错误、意外事故还是故意的设计决策。

关于java - 使用 GET 调用将 json 作为数据发送,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29925119/

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