httr2::curl_translate("curl http://x.com?string=abcde&b=2")
gives
request("http://x.com?string=abcde&b=2") %>%
req_perform()
It would be much nicer if this were
request("http://x.com") %>%
req_url_query(
string = "abcde",
b = "2",
) %>%
req_perform()
gives
It would be much nicer if this were