mirror of
https://github.com/curl/curl.git
synced 2024-12-09 06:30:06 +08:00
b6e1afd069
This option adds a piece of data, usually a name + value pair, to the end of the URL query part. The syntax is identical to that used for --data-urlencode with one extension: If the argument starts with a '+' (plus), the rest of the string is provided as-is unencoded. This allows users to "build" query parts with options and URL encoding even when not doing GET requests, which the already provided option -G (--get) is limited to. This idea was born in a Twitter thread. Closes #9691
26 lines
816 B
Makefile
26 lines
816 B
Makefile
c: Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
|
|
SPDX-License-Identifier: curl
|
|
Long: url-query
|
|
Arg: <data>
|
|
Help: Add a URL query part
|
|
Protocols: all
|
|
See-also: data-urlencode get
|
|
Added: 7.87.0
|
|
Category: http post upload
|
|
Example: --url-query name=val $URL
|
|
Example: --url-query =encodethis http://example.net/foo
|
|
Example: --url-query name@file $URL
|
|
Example: --url-query @fileonly $URL
|
|
Example: --url-query "+name=%20foo" $URL
|
|
Multi: append
|
|
---
|
|
This option adds a piece of data, usually a name + value pair, to the end of
|
|
the URL query part. The syntax is identical to that used for --data-urlencode
|
|
with one extension:
|
|
|
|
If the argument starts with a '+' (plus), the rest of the string is provided
|
|
as-is unencoded.
|
|
|
|
The query part of a URL is the one following the question mark on the right
|
|
end.
|