我有一些 url 的查询参数中有空格。我想在curl中使用它,例如
curl -G "http://localhost:30001/data?zip=47401&utc_begin=2013-8-1 00:00:00&utc_end=2013-8-2 00:00:00&country_code=USA"
给出了
Malformed Request-Line
根据我的理解,o/p 是由于查询参数中存在空格造成的。
在将 url 提供给curl 命令之前,是否有任何方法可以自动对 url 进行编码?
答案1
curl
支持内部 url 编码--data-urlencode
:
$ curl -G -v "http://localhost:30001/data" --data-urlencode "msg=hello world" --data-urlencode "msg2=hello world2"
-G
还需要将数据附加到 URL。
跟踪标头
> GET /data?msg=hello%20world&msg2=hello%20world2 HTTP/1.1
> User-Agent: curl/7.19.7 (x86_64-redhat-linux-gnu)
> Host: localhost
> Accept: */*
答案2
curl -G "$( echo "$URL" | sed 's/ /%20/g' )"
$URL
您要进行翻译的网址在哪里。
URL 中还可以有不止一种类型的翻译(编码),因此您可能需要执行以下操作:
curl -G "$(perl -MURI::Escape -e 'print uri_escape shift, , q{^A-Za-z0-9\-._~/:}' -- "$URL")"
反而。