req_verbose()
uses the following prefixes to distinguish between
different components of the HTTP requests and responses:
*
informative curl messages->
request headers>>
request body<-
response headers<<
response body
Usage
req_verbose(
req,
header_req = TRUE,
header_resp = TRUE,
body_req = FALSE,
body_resp = FALSE,
info = FALSE,
redact_headers = TRUE
)
Arguments
- req
A httr2 request object.
- header_req, header_resp
Show request/response headers?
- body_req, body_resp
Should request/response bodies? When the response body is compressed, this will show the number of bytes received in each "chunk".
- info
Show informational text from curl? This is mainly useful for debugging https and auth problems, so is disabled by default.
- redact_headers
Redact confidential data in the headers? Currently redacts the contents of the Authorization header to prevent you from accidentally leaking credentials when debugging/reprexing.
Value
A modified HTTP request.
See also
req_perform()
which exposes a limited subset of these options
through the verbosity
argument and with_verbosity()
which allows you
to control the verbosity of requests deeper within the call stack.
Examples
# Use `req_verbose()` to see the headers that are sent back and forth when
# making a request
resp <- request("https://httr2.r-lib.org") |>
req_verbose() |>
req_perform()
#> -> GET / HTTP/2
#> -> Host: httr2.r-lib.org
#> -> user-agent: httr2/1.0.7 r-curl/6.0.1 libcurl/7.81.0
#> -> accept: */*
#> -> accept-encoding: deflate, gzip, br, zstd
#> ->
#> <- HTTP/2 200
#> <- server: GitHub.com
#> <- content-type: text/html; charset=utf-8
#> <- last-modified: Tue, 26 Nov 2024 13:47:46 GMT
#> <- access-control-allow-origin: *
#> <- etag: W/"6745d182-4983"
#> <- expires: Wed, 27 Nov 2024 12:14:10 GMT
#> <- cache-control: max-age=600
#> <- content-encoding: gzip
#> <- x-proxy-cache: MISS
#> <- x-github-request-id: 741F:10316B:24D89D3:28C077E:67470AB8
#> <- accept-ranges: bytes
#> <- date: Wed, 27 Nov 2024 14:19:30 GMT
#> <- via: 1.1 varnish
#> <- age: 19
#> <- x-served-by: cache-chi-kigq8000150-CHI
#> <- x-cache: HIT
#> <- x-cache-hits: 1
#> <- x-timer: S1732717171.885222,VS0,VE1
#> <- vary: Accept-Encoding
#> <- x-fastly-request-id: dfabfaf2f3325ea5fdecc47b9459572424d82821
#> <- content-length: 4636
#> <-
# Or use one of the convenient shortcuts:
resp <- request("https://httr2.r-lib.org") |>
req_perform(verbosity = 1)
#> -> GET / HTTP/2
#> -> Host: httr2.r-lib.org
#> -> user-agent: httr2/1.0.7 r-curl/6.0.1 libcurl/7.81.0
#> -> accept: */*
#> -> accept-encoding: deflate, gzip, br, zstd
#> ->
#> <- HTTP/2 200
#> <- server: GitHub.com
#> <- content-type: text/html; charset=utf-8
#> <- last-modified: Tue, 26 Nov 2024 13:47:46 GMT
#> <- access-control-allow-origin: *
#> <- etag: W/"6745d182-4983"
#> <- expires: Wed, 27 Nov 2024 12:14:10 GMT
#> <- cache-control: max-age=600
#> <- content-encoding: gzip
#> <- x-proxy-cache: MISS
#> <- x-github-request-id: 741F:10316B:24D89D3:28C077E:67470AB8
#> <- accept-ranges: bytes
#> <- date: Wed, 27 Nov 2024 14:19:30 GMT
#> <- via: 1.1 varnish
#> <- age: 19
#> <- x-served-by: cache-chi-kigq8000150-CHI
#> <- x-cache: HIT
#> <- x-cache-hits: 2
#> <- x-timer: S1732717171.896415,VS0,VE0
#> <- vary: Accept-Encoding
#> <- x-fastly-request-id: 106fb6981d6ba390cb9617509c28189d873d87c3
#> <- content-length: 4636
#> <-