gpt4 book ai didi

curl - 为什么 CURL --data-urlencode 不进行 URL 编码

转载 作者:行者123 更新时间:2023-12-04 11:00:04 26 4
gpt4 key购买 nike

我正在尝试使用 curl--data-urlencode 对查询参数进行 URL 编码,但它们最终被附加到查询中,就像 --数据

问题可以在 netcat 的帮助下重现并对其进行查询。

示例 curl POST 查询:

curl --data-urlencode "foo=bar" 127.0.0.1:8080/test/path

实际输出:

$ nc -l 8080
POST /test/path HTTP/1.1
Host: 127.0.0.1:8080
User-Agent: curl/7.58.0
Accept: */*
Content-Length: 7
Content-Type: application/x-www-form-urlencoded

foo=bar

预期输出:

$ nc -l 8080
POST /test/path?foo=bar HTTP/1.1
Host: 127.0.0.1:8080
User-Agent: curl/7.58.0
Accept: */*

最佳答案

根据manual--data-urlencode 选项“...发布数据,类似于其他 -d,--data 选项”。因此,如果您看到的是帖子,这是预期的行为。

您可以使用 --get 让 curl 发出一个 GET 请求。另外,-v 是个好 friend !

curl -v --data-urlencode "foo=bar" http://127.0.0.1/test.php
* Trying 127.0.0.1...
* Connected to 127.0.0.1 (127.0.0.1) port 80 (#0)
> POST /test.php HTTP/1.1
> Host: 127.0.0.1
> User-Agent: curl/7.47.0
> Accept: */*
> Content-Length: 7
> Content-Type: application/x-www-form-urlencoded

使用--get:

curl -v --get --data-urlencode "foo=bar" http://127.0.0.1/test.php
* Trying 127.0.0.1...
* Connected to 127.0.0.1 (127.0.0.1) port 80 (#0)
> GET /test.php?foo=bar HTTP/1.1
> Host: 127.0.0.1
> User-Agent: curl/7.47.0
> Accept: */*

关于curl - 为什么 CURL --data-urlencode 不进行 URL 编码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58874140/

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