I'm working here behind proxy so I need to configure my connection. It works well with defining options list and calling getURL:
opts <- list(
proxy = "http://****",
proxyusername = "****",
proxypassword = "*****",
proxyport = ****
)
getURL("http://stackoverflow.com", .opts = opts)
I'd like to set this options as defaults, but still cannot find any working solutions. Could you advise anything?
Thank you.