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
A httr2 response object, 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 andNULL
otherwise.resp_header_exists()
returnsTRUE
orFALSE
.
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: Fri, 07 Feb 2025 17:59:04 GMT
#> access-control-allow-origin: *
#> etag: W/"67a649e8-4b1b"
#> expires: Fri, 07 Feb 2025 18:12:09 GMT
#> cache-control: max-age=600
#> content-encoding: gzip
#> x-proxy-cache: HIT
#> x-github-request-id: 2E76:319A4E:1282CDA:139D948:67A64AB6
#> accept-ranges: bytes
#> date: Fri, 07 Feb 2025 18:12:09 GMT
#> via: 1.1 varnish
#> age: 20
#> x-served-by: cache-iad-kcgs7200136-IAD
#> x-cache: HIT
#> x-cache-hits: 4
#> x-timer: S1738951930.897904,VS0,VE1
#> vary: Accept-Encoding
#> x-fastly-request-id: e519589f2f11d8f7ca9e71c4747a235832b10613
#> content-length: 4736
resp |> resp_headers("x-")
#> <httr2_headers>
#> x-proxy-cache: HIT
#> x-github-request-id: 2E76:319A4E:1282CDA:139D948:67A64AB6
#> x-served-by: cache-iad-kcgs7200136-IAD
#> x-cache: HIT
#> x-cache-hits: 4
#> x-timer: S1738951930.897904,VS0,VE1
#> x-fastly-request-id: e519589f2f11d8f7ca9e71c4747a235832b10613
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