我在 AWS“Ubuntu Server 12.04.2 LTS”上运行 R Studio,并通过我的浏览器访问 R Studio。
当我尝试使用ROAuth
带有代码的包在 Twitter API 上进行身份验证时:
credential<-OAuthFactory$new(consumerKey="xxxxx",
consumerSecret="xxxxx",
requestURL="https://api.twitter.com/oauth/request_token",
accessURL="https://api.twitter.com/oauth/access_token",
authURL="https://api.twitter.com/oauth/authorize")
credential$handshake()
registerTwitterOAuth(credential)
registerTwitterOAuth(credential)
说完后我得到一个错误
Error in registerTwitterOAuth(credential) :
ROAuth is no longer used in favor of httr, please see ?setup_twitter_oauth
但是我找不到任何进一步的解释..