with_verbosity()
is useful for debugging httr2 code buried deep inside
another package because it allows you to see exactly what's been sent
and requested.
Arguments
- code
Code to execture
- verbosity
How much information to print? This is a wrapper around
req_verbose()
that uses an integer to control verbosity:0
: no output1
: show headers2
: show headers and bodies3
: show headers, bodies, and curl status messages.
Use
with_verbosity()
to control the verbosity of requests that you can't affect directly.
Examples
fun <- function() {
request("https://httr2.r-lib.org") |> req_perform()
}
with_verbosity(fun())
#> -> GET / HTTP/2
#> -> Host: httr2.r-lib.org
#> -> user-agent: httr2/1.0.5 r-curl/5.2.3 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, 24 Sep 2024 17:20:30 GMT
#> <- access-control-allow-origin: *
#> <- etag: W/"66f2f4de-4983"
#> <- expires: Thu, 26 Sep 2024 10:53:19 GMT
#> <- cache-control: max-age=600
#> <- content-encoding: gzip
#> <- x-proxy-cache: MISS
#> <- x-github-request-id: DED6:140203:B7AEDD:C8ECDD:66F53AC2
#> <- accept-ranges: bytes
#> <- date: Thu, 26 Sep 2024 12:36:19 GMT
#> <- via: 1.1 varnish
#> <- age: 23
#> <- x-served-by: cache-nyc-kteb1890055-NYC
#> <- x-cache: HIT
#> <- x-cache-hits: 5
#> <- x-timer: S1727354180.881099,VS0,VE0
#> <- vary: Accept-Encoding
#> <- x-fastly-request-id: 5e8256cb553d931d613cfca099818713cd8a096b
#> <- content-length: 4636
#> <-
#> <httr2_response>
#> GET https://httr2.r-lib.org/
#> Status: 200 OK
#> Content-Type: text/html
#> Body: In memory (18819 bytes)