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 output
1: show headers
2: show headers and bodies
3: 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/0.2.2.9000 r-curl/4.3.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: Thu, 12 Jan 2023 16:24:10 GMT
#> <- access-control-allow-origin: *
#> <- etag: W/"63c0342a-4cee"
#> <- expires: Fri, 13 Jan 2023 13:43:46 GMT
#> <- cache-control: max-age=600
#> <- content-encoding: gzip
#> <- x-proxy-cache: MISS
#> <- x-github-request-id: 0801:12D8:1260968:1837ADB:63C15DBA
#> <- accept-ranges: bytes
#> <- date: Fri, 13 Jan 2023 13:34:16 GMT
#> <- via: 1.1 varnish
#> <- age: 29
#> <- x-served-by: cache-dfw-kdfw8210075-DFW
#> <- x-cache: HIT
#> <- x-cache-hits: 5
#> <- x-timer: S1673616856.454633,VS0,VE0
#> <- vary: Accept-Encoding
#> <- x-fastly-request-id: 8f82ad761487f3eda49a68b8e859a472e6fd4921
#> <- content-length: 5309
#> <-
#> <httr2_response>
#> GET https://httr2.r-lib.org/
#> Status: 200 OK
#> Content-Type: text/html
#> Body: In memory (19694 bytes)