Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am currently trying to send tweets from R, but I cannot get around the following error:

Error in .self$twFromJSON(out) : 
  Error: Could not authenticate with OAuth.

I have followed the directions in the twitteR vignette and the other stackoverflow questions concerning the matter (http://stackoverflow.com/questions/8122879/roauth-on-windows-using-r), but none seem to get around this error. Here is the code I am using:

library("twitteR")
library('ROAuth')

requestURL <- "https://api.twitter.com/oauth/request_token"
accessURL = "http://api.twitter.com/oauth/access_token"
authURL = "http://api.twitter.com/oauth/authorize"
consumerKey = "*****************************"
consumerSecret = "************************"
Cred <- OAuthFactory$new(consumerKey=consumerKey,
                             consumerSecret=consumerSecret,
                             requestURL=requestURL,
                             accessURL=accessURL, 
                             authURL=authURL)
Cred$handshake(cainfo = system.file("CurlSSL", "cacert.pem", package = "RCurl"))
registerTwitterOAuth(Cred)

Through here works. registerTwitterOAuth returns TRUE, so you would think that everything worked. But when I try and send a tweet, I get the error listed above.

I'm trying to send a tweet by doing:

tweet("text to tweet")

This results in:

Error in .self$twFromJSON(out) : 
  Error: Could not authenticate with OAuth.

Not sure what's going wrong. The OAuth validation seems to work, but then I am unable to send tweets.

share|improve this question

2 Answers

This hopefully was resolved with the version that I just uploaded yesterday. If you're not already using 0.9.1 version of ROAuth, can you update your package and try again?

share|improve this answer
I'm actually on Windows, and it looks like the latest version of the windows binary is 0.9.0. – Josh W. Feb 21 '12 at 17:55
Give it a few days, it takes a while for the Win & Mac versions to catch up on CRAN - different people manage those repositories. – geoffjentry Feb 21 '12 at 18:27
Thanks, I'll check in a few days to see if it's been updated. – Josh W. Feb 21 '12 at 19:07
I have updated the package to 0.9.1, and I get the same error. – Josh W. Feb 22 '12 at 18:11
Are you sure that those are the versions that are loaded in when you try? For instance this didn't work for me 2 days ago: library(twitteR); load("credTwit.rda"); registerTwitterOAuth(cred); tweet("text to tweet") and now it does. Can you double check w/ a sessionInfo() – geoffjentry Feb 22 '12 at 18:38
show 2 more comments

I just updated twitteR and ROAuth packages and ran these commands, and everything worked for me:

cred = getTwitterOAuth(consumerKey, consumerSecret)
registerTwitterOAuth(cred)
tweet("something incredibly interesting...")

Seems that twitterR now provides a cleaner interface to register the OAuth credential, which does not require explicit use of the OAuthFactory$new or handshake calls. When I tried explicitly calling these functions, things started to break. But when I used the interface above, everything worked smoothly.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.