0
我一直在閱讀過去的帖子,這仍然不適合我。我想使用twitteR軟件包,但它不會讓我讀取令牌密鑰和機密。不能訪問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")
這不起作用,或者是因爲同樣的錯誤發生。
如果有人發現了這個問題的答案,我將不勝感激他們的投入,謝謝!