I am exploring the Twitter API.
I am using the ROAuth and twitteR packages in R.
I reach a point where I think things are going well:
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
So far so good. Now, I am ready to see some Twitter timelines:
> my_tweets <- userTimeline('someTimeline')
Unfortunately, I get:
Error in InterfaceObj$doAPICall(cmd, params, method, ...) :
OAuth authentication is required with Twitter's API v1.1
I have been researching what this means. I feel like my OAuth authentication is appropriate. Why would I be getting this error?
Is there some issue with the version of the API I am using?
I see that you were successful accessing (aka handshaking). I assume your handshaking code would be similar to the following line.
Then I assume you registered Twitter OAuth by using the following line, which you said that it was successful.
Then your userTimeline should include the pem file you created before.