req_proxy {httr2} | R Documentation |
Use a proxy for a request
Description
Use a proxy for a request
Usage
req_proxy(
req,
url,
port = NULL,
username = NULL,
password = NULL,
auth = "basic"
)
Arguments
req |
A request. |
url , port |
Location of proxy. |
username , password |
Login details for proxy, if needed. |
auth |
Type of HTTP authentication to use. Should be one of the
following: |
Examples
# Proxy from https://www.proxynova.com/proxy-server-list/
## Not run:
request("http://hadley.nz") |>
req_proxy("20.116.130.70", 3128) |>
req_perform()
## End(Not run)
[Package httr2 version 1.0.2 Index]