我需要使用RCurl获取https get请求,如下所示:
url<-c("https://example.com")
x<-getURL(url)
我收到此错误:
Error in function (type, msg, asError = TRUE) : couldn't connect to host
我可以定义从我的R会话连接到互联网,因为我可以连接到cran来安装R包。我连接的这个网址不需要用户名/密码,因为网址中有一个密钥。我可以用browswer手动访问这个网址。谁能告诉我这里可能有什么问题?
答案 0 :(得分:2)
将网址从https更改为http调用,这对我有用:
url<-c("http:/example.com")
download.file(url, destfile="test.xml")