2016-11-16 06:44:58 +08:00
|
|
|
Long: header
|
|
|
|
Short: H
|
2017-06-15 17:08:31 +08:00
|
|
|
Arg: <header/@file>
|
|
|
|
Help: Pass custom header(s) to server
|
2016-11-16 06:44:58 +08:00
|
|
|
Protocols: HTTP
|
2020-07-13 20:15:04 +08:00
|
|
|
Category: http
|
2020-11-02 17:31:02 +08:00
|
|
|
See-also: user-agent referer
|
2021-08-31 22:37:14 +08:00
|
|
|
Example: -H "X-First-Name: Joe" $URL
|
|
|
|
Example: -H "User-Agent: yes-please/2000" $URL
|
|
|
|
Example: -H "Host:" $URL
|
2016-11-16 06:44:58 +08:00
|
|
|
---
|
|
|
|
Extra header to include in the request when sending HTTP to a server. You may
|
|
|
|
specify any number of extra headers. Note that if you should add a custom
|
|
|
|
header that has the same name as one of the internal ones curl would use, your
|
|
|
|
externally set header will be used instead of the internal one. This allows
|
|
|
|
you to make even trickier stuff than curl would normally do. You should not
|
|
|
|
replace internally set headers without knowing perfectly well what you're
|
|
|
|
doing. Remove an internal header by giving a replacement without content on
|
|
|
|
the right side of the colon, as in: -H \&"Host:". If you send the custom
|
|
|
|
header with no-value then its header must be terminated with a semicolon, such
|
|
|
|
as \-H \&"X-Custom-Header;" to send "X-Custom-Header:".
|
|
|
|
|
|
|
|
curl will make sure that each header you add/replace is sent with the proper
|
2021-03-22 23:50:57 +08:00
|
|
|
end-of-line marker, you should thus **not** add that as a part of the header
|
2020-10-30 19:05:47 +08:00
|
|
|
content: do not add newlines or carriage returns, they will only mess things
|
|
|
|
up for you.
|
2016-11-16 06:44:58 +08:00
|
|
|
|
2020-10-30 19:05:47 +08:00
|
|
|
This option can take an argument in @filename style, which then adds a header
|
|
|
|
for each line in the input file. Using @- will make curl read the header file
|
|
|
|
from stdin. Added in 7.55.0.
|
2017-06-15 17:08:31 +08:00
|
|
|
|
2020-10-30 19:05:47 +08:00
|
|
|
You need --proxy-header to send custom headers intended for a HTTP
|
|
|
|
proxy. Added in 7.37.0.
|
2016-11-16 06:44:58 +08:00
|
|
|
|
2020-10-30 19:05:47 +08:00
|
|
|
Passing on a "Transfer-Encoding: chunked" header when doing a HTTP request
|
2020-11-05 16:36:24 +08:00
|
|
|
with a request body, will make curl send the data using chunked encoding.
|
2016-11-16 06:44:58 +08:00
|
|
|
|
2021-03-22 23:50:57 +08:00
|
|
|
**WARNING**: headers set with this option will be set in all requests - even
|
2016-11-28 08:01:13 +08:00
|
|
|
after redirects are followed, like when told with --location. This can lead to
|
|
|
|
the header being sent to other hosts than the original host, so sensitive
|
|
|
|
headers should be used with caution combined with following redirects.
|
2016-11-16 06:44:58 +08:00
|
|
|
|
|
|
|
This option can be used multiple times to add/replace/remove multiple headers.
|