无法访问twitteR

时间:2016-01-04 20:47:08

标签: r twitter oauth devtools httr

我一直在阅读过去的帖子,这仍然不适合我。我想使用twitteR包但它不会让我读取令牌密钥和秘密。

这是可以重复的代码,我希望有人可以给我一个关于我做错的详细答案。谢谢。

library(twitteR)
library(httr)
cKey1 <- "consumer key"
cSecret1 <- "consumer secret"
aKey1<- "access key"
aSecret1 <- "access secret" 

setup_twitter_oauth(cKey1, cSecret1, aKey1, aSecret1)

[1] "Using direct authentication"
Use a local file to cache OAuth access credentials between R sessions?
1: Yes
2: No

Selection: 1

Error in check_twitter_oauth() : OAuth authentication error:
This most likely means that you have incorrectly called setup_twitter_oauth()'

因此,最近的一些帖子提到了尝试以下内容:

下载最新版本的httr(0.0.6),但这不起作用,因为twitteR不支持。

另一个是安装:

devtools::install_github("jrowen/twitteR", ref = "oauth_httr_1_0")

这不起作用,因为发生了同样的错误。

如果有人找到了这个问题的答案,我将非常感谢他们的意见,谢谢!

1 个答案:

答案 0 :(得分:0)

devtools::install_github("geoffjentry/twitteR") 

这终于奏效了