2016-11-05 14:17:30 +02:00
|
|
|
= cowboy_req:header(3)
|
|
|
|
|
|
|
|
== Name
|
|
|
|
|
|
|
|
cowboy_req:header - HTTP header
|
|
|
|
|
|
|
|
== Description
|
|
|
|
|
|
|
|
[source,erlang]
|
|
|
|
----
|
2016-11-07 18:03:47 +02:00
|
|
|
header(Name, Req) -> header(Name, Req, undefined)
|
|
|
|
header(Name, Req, Default) -> binary() | Default
|
2016-11-05 14:17:30 +02:00
|
|
|
|
2016-12-21 15:47:44 +01:00
|
|
|
Name :: binary() %% lowercase; case insensitive
|
2016-11-07 18:03:47 +02:00
|
|
|
Req :: cowboy_req:req()
|
|
|
|
Default :: any()
|
2016-11-05 14:17:30 +02:00
|
|
|
----
|
|
|
|
|
|
|
|
Return the value for the given HTTP header.
|
|
|
|
|
|
|
|
The header name must be given as a lowercase binary string.
|
|
|
|
While header names are case insensitive, Cowboy requires them
|
|
|
|
to be given as lowercase to function properly.
|
|
|
|
|
|
|
|
Headers can also be obtained using pattern matching:
|
|
|
|
|
|
|
|
[source,erlang]
|
|
|
|
----
|
|
|
|
#{headers := #{Name := Value}} = Req.
|
|
|
|
----
|
|
|
|
|
|
|
|
Note that this snippet will crash if the header is missing.
|
|
|
|
|
|
|
|
== Arguments
|
|
|
|
|
|
|
|
Name::
|
|
|
|
|
2016-11-07 01:11:56 +02:00
|
|
|
Desired HTTP header name as a lowercase binary string.
|
2016-11-05 14:17:30 +02:00
|
|
|
|
|
|
|
Req::
|
|
|
|
|
|
|
|
The Req object.
|
|
|
|
|
|
|
|
Default::
|
|
|
|
|
|
|
|
Default value returned when the header is missing.
|
|
|
|
|
|
|
|
== Return value
|
|
|
|
|
|
|
|
The header value is returned as a binary string. When the
|
|
|
|
header is missing, the default argument is returned.
|
|
|
|
|
|
|
|
== Changelog
|
|
|
|
|
|
|
|
* *2.0*: Only the header value is returned, it is no longer wrapped in a tuple.
|
|
|
|
* *1.0*: Function introduced.
|
|
|
|
|
|
|
|
== Examples
|
|
|
|
|
|
|
|
.Get the accept header
|
|
|
|
[source,erlang]
|
|
|
|
----
|
|
|
|
Accept = cowboy_req:header(<<"accept">>, Req).
|
|
|
|
----
|
|
|
|
|
|
|
|
.Get the content-length header with a default value
|
|
|
|
[source,erlang]
|
|
|
|
----
|
|
|
|
Length = cowboy_req:header(<<"content-length">>, Req, <<"0">>).
|
|
|
|
----
|
|
|
|
|
|
|
|
== See also
|
|
|
|
|
|
|
|
link:man:cowboy_req(3)[cowboy_req(3)],
|
|
|
|
link:man:cowboy_req:headers(3)[cowboy_req:headers(3)],
|
|
|
|
link:man:cowboy_req:parse_header(3)[cowboy_req:parse_header(3)]
|