我正在探索 Twitter API。
我在 R 中使用ROAuth
andtwitteR
包。
我达到了我认为事情进展顺利的地步:
To enable the connection, please direct your web browser to:
https://api.twitter.com/oauth/authorize?oauth_token=XXXXX
When complete, record the PIN given to you and provide it here: XX
到目前为止,一切都很好。现在,我准备好查看一些 Twitter 时间线:
> my_tweets <- userTimeline('someTimeline')
不幸的是,我得到:
Error in InterfaceObj$doAPICall(cmd, params, method, ...) :
OAuth authentication is required with Twitter's API v1.1
我一直在研究这意味着什么。我觉得我的 OAuth 身份验证是合适的。为什么我会收到此错误?
我使用的 API 版本有问题吗?