We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
I'm attempting to use streamR but when running this part of my code:
`requestURL <- "https://api.twitter.com/oauth/request_token" accessURL <- "https://api.twitter.com/oauth/access_token" authURL <- "https://api.twitter.com/oauth/authorize" consumerKey <- "mykey" consumerSecret <- "mysecret"
my_oauth <- OAuthFactory$new(consumerKey = consumerKey, consumerSecret = consumerSecret, requestURL = requestURL, accessURL = accessURL, authURL = authURL)
my_oauth$handshake(cainfo = system.file("CurlSSL", "cacert.pem", package = "RCurl"))
save(my_oauth, file = "my_oauth.Rdata")`
i get "Error: Authorization Required"
and the following page shows up:
using the same consumerKey and consumerSecret for twitteR i don't seem to have any issues with authentication.
I googled this and it seems as though others have had this same issue but don't seem to have a clear solution.
Could somebody advise me one what the issue might be due to?
I've checked both the key and secret multiple times and am 100% sure they are correct.
Thanks
The text was updated successfully, but these errors were encountered:
Same issue for me also
Sorry, something went wrong.
No branches or pull requests
Hi,
I'm attempting to use streamR but when running this part of my code:
`requestURL <- "https://api.twitter.com/oauth/request_token"
accessURL <- "https://api.twitter.com/oauth/access_token"
authURL <- "https://api.twitter.com/oauth/authorize"
consumerKey <- "mykey"
consumerSecret <- "mysecret"
my_oauth <- OAuthFactory$new(consumerKey = consumerKey,
consumerSecret = consumerSecret,
requestURL = requestURL,
accessURL = accessURL,
authURL = authURL)
my_oauth$handshake(cainfo = system.file("CurlSSL", "cacert.pem", package = "RCurl"))
save(my_oauth, file = "my_oauth.Rdata")`
i get "Error: Authorization Required"
and the following page shows up:
using the same consumerKey and consumerSecret for twitteR i don't seem to have any issues with authentication.
I googled this and it seems as though others have had this same issue but don't seem to have a clear solution.
Could somebody advise me one what the issue might be due to?
I've checked both the key and secret multiple times and am 100% sure they are correct.
Thanks
The text was updated successfully, but these errors were encountered: