RStudio中的代理设置,用于第三方API访问

时间:2015-05-20 14:31:31

标签: api proxy rstudio http-proxy adobe-analytics

我在我公司防火墙后面的服务器上使用RStudio。我提到了链接here并在我的RProfile脚本中进行了相同的更改:

RProfile

http_proxy=http://proxy.dom.com:80
http_proxy_user=user:passwd

我正在尝试使用包RSiteCatalyst访问API(Omniture a.k.a. api.omniture.com),即使我提到代理,我也无法绕过防火墙。以下是我的工作:

library(RSiteCatalyst)
SCAuth('username','shared-secret') # Authentication

我得到的错误

Error in function (type, msg, asError = TRUE)  : 
Could not resolve host: api.omniture.com

在去IT之前,我来到这里寻求StackOverflow众神的帮助。非常感谢它。感谢。

1 个答案:

答案 0 :(得分:1)

我认为那篇文章有一个错字。您可以将http_proxy行放在.Renviron而不是.Rprofile中,然后重启RStudio吗? (如果这样做,我们将更新文章!)