我正在使用rtweet
中的RStudio
软件包从Twitter.com检索一些推文。
我对该过程的身份验证部分有些困惑。
我的R代码如下:
library(rtweet)
library(httpuv)
## authenticate via access token
token <- create_token(
app = "rtweet_xxx",
consumer_key = "xxxxxxxxxxxxxxxxxx",
consumer_secret = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
access_token = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
access_secret = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx")
## check to see if the token is loaded
identical(token, get_token())
运行最后一行代码时,得到的结果为“ FALSE”。我认为这意味着令牌尚未加载。
我的rtweet
版本是0.6.9(文档告诉我这是未发行的版本):Changelog
与我的rtweet
版本有关吗?还有另一种方法来检查验证是否已通过验证吗?