Skip to content
  • resp_headers() retrieves a list of all headers.

  • resp_header() retrieves a single header.

  • resp_header_exists() checks if a header is present.

Usage

resp_headers(resp, filter = NULL)

resp_header(resp, header, default = NULL)

resp_header_exists(resp, header)

Arguments

resp

An HTTP response object, as created by req_perform().

filter

A regular expression used to filter the header names. NULL, the default, returns all headers.

header

Header name (case insensitive)

default

Default value to use if header doesn't exist.

Value

  • resp_headers() returns a list.

  • resp_header() returns a string if the header exists and NULL otherwise.

  • resp_header_exists() returns TRUE or FALSE.

Examples

resp <- request("https://httr2.r-lib.org") |> req_perform()
resp |> resp_headers()
#> <httr2_headers>
#> server: GitHub.com
#> content-type: text/html; charset=utf-8
#> last-modified: Mon, 01 Apr 2024 19:01:49 GMT
#> access-control-allow-origin: *
#> etag: W/"660b049d-4f91"
#> expires: Mon, 01 Apr 2024 21:24:45 GMT
#> cache-control: max-age=600
#> content-encoding: gzip
#> x-proxy-cache: MISS
#> x-github-request-id: 165A:7F73D:2A82D94:3880311:660B23C5
#> accept-ranges: bytes
#> date: Mon, 01 Apr 2024 21:15:05 GMT
#> via: 1.1 varnish
#> age: 19
#> x-served-by: cache-iad-kcgs7200116-IAD
#> x-cache: HIT
#> x-cache-hits: 4
#> x-timer: S1712006105.134231,VS0,VE0
#> vary: Accept-Encoding
#> x-fastly-request-id: 9129983bb9d57ed9ebd298314e6dedadf431a49e
#> content-length: 5435
resp |> resp_headers("x-")
#> <httr2_headers>
#> x-proxy-cache: MISS
#> x-github-request-id: 165A:7F73D:2A82D94:3880311:660B23C5
#> x-served-by: cache-iad-kcgs7200116-IAD
#> x-cache: HIT
#> x-cache-hits: 4
#> x-timer: S1712006105.134231,VS0,VE0
#> x-fastly-request-id: 9129983bb9d57ed9ebd298314e6dedadf431a49e

resp |> resp_header_exists("server")
#> [1] TRUE
resp |> resp_header("server")
#> [1] "GitHub.com"
# Headers are case insensitive
resp |> resp_header("SERVER")
#> [1] "GitHub.com"

# Returns NULL if header doesn't exist
resp |> resp_header("this-header-doesnt-exist")
#> NULL