-
Notifications
You must be signed in to change notification settings - Fork 5
Open
Labels
bugan unexpected problem or unintended behavioran unexpected problem or unintended behavior
Description
library(httr2)
local_httpbin_app <- webfakes::local_app_process(webfakes::httpbin_app())
request(local_httpbin_app$url("/post")) |>
req_body_raw("some string") |>
req_perform() |>
resp_body_json() |>
_$data |>
str()
#> Named list()
request("https://httpbin.org/post") |>
req_body_raw("some string") |>
req_perform() |>
resp_body_json() |>
_$data |>
str()
#> chr "some string"
Created on 2025-04-09 with reprex v2.1.1
Metadata
Metadata
Assignees
Labels
bugan unexpected problem or unintended behavioran unexpected problem or unintended behavior