我一直在尝试使用 R 中的 tweeteR 包下载一些推文

我的 oauth 凭据的代码是

cred<-AuthFactory$new(consumerKey=consumerKey,
consumerSecret=consumerSecret,requestURL=reqURL,accessURL=accessURL,authURL=authURL)

当我尝试运行以下进行握手时
cred$handshake(cainfo=system.file("CurlSSL","cacert.pem",package="RCurl"))

我收到此错误
Error in function (type, msg, asError = TRUE)  :
Could not resolve host: api.twitter.com; No data record of requested type

我在 Windows 机器上运行代码。 (我已经包含了下载 cacert.pem 的代码)

最佳答案

我为此制定了解决方案,对于代理背后的人,他们也必须在 RCurl 中设置代理选项(为 R 设置代理是不够的)。此命令有效

options( RCurlOptions = list(verbose = TRUE,proxy = "host:port"))

关于r - 在 R 中使用 twitteR 的 oauth 握手错误,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/24104179/

10-12 01:11