Questions tagged [roauth]

ROAuth is an R package that "provides an interface to the OAuth 1.0 specification, allowing users to authenticate via OAuth to the server of their choice."

Documentation for ROAuth is available here. Questions about OAuth should be tagged .

26 questions
1
vote
1 answer

twitteR and ROAuth with as.environment error

I am very new to the Twitter environment. I am trying to analyse Twitter messages using twitteR. I am having trouble with the ROauth package. I followed the instructions in the ROAuth package documentation but I still get an error message. Here…
Hein
  • 33
  • 1
  • 4
0
votes
1 answer

trying to call the package RoAuth but getting an error no package called RCurl?

: library(ROAuth) after installing but receiving Error: package or namespace load failed for ‘ROAuth’ in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]): there is no package called ‘RCurl’
0
votes
1 answer

No PIN during ROAuth process in R Studio

I want to access twitter via R Studio [version 3.5.1 (2018-07-02)] to download Tweets matching a certain keyword. I am using the packages "twitteR" and "ROAuth". My twitter account has "Read, write, and direct messages" set as access permission. My…
StableSong
  • 79
  • 11
0
votes
1 answer

Trying to connect to Twitter Streaming API using ROAuth, getting "Error: Forbidden"

I'm trying to use StreamR to get a stream of tweets originating from a particular location. Before I do that, I'm required to do a handshake using ROAuth. Here is what I do: reqURL <- "https://api.twitter.com/oauth/request_token" accessURL <-…
wlad
  • 2,073
  • 2
  • 18
  • 29
0
votes
1 answer

Twitter app is not getting started

I have written following script to extract tweets from twitter. library("twitteR") library("ROAuth") library("RCurl") library("httr") download.file(url="http://curl.haxx.se/ca/cacert.pem",destfile="cacert.pem") ck <- '4QPOQJoiBgoGP7jU13Akxfp2E' cs…
0
votes
1 answer

Need help making a POST request in R using FIXML and ROAuth

I'm trying to connect to a trading API and I've been successful making GET requests, but when I try to make a POST request I keep getting error messages from the API. I've searched the internet and forums for an answer, but all similar questions…
0
votes
0 answers

twitteR OAuth handshake Error: Forbidden (Mac OS)

I tried to follow the simple example in R's twitteR package to connect to Twitter. I created an App, obtained customer key and secret. I call the twitCred$handshake(), get a URL, Authorize the App and get a pin. So far so good. But when I enter the…
Sylvia
  • 315
  • 2
  • 17
0
votes
1 answer

OAuth Pin Returns [1]

I've been pulling twitter for about a month now using the following code library (RCurl) library (twitteR) library (streamR) library (ROAuth) requestURL<-"https://api.twitter.com/oauth/request_token" accessURL <-…
0
votes
2 answers

OAuth authentication with Twitter's API using R

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:…
tumultous_rooster
  • 12,150
  • 32
  • 92
  • 149
0
votes
1 answer

Finding the PIN from Twitter.Com after using twitteR library on R and ROAuth package

I have a question that I hope someone could help me with. I am trying to get some tweets from Twitter via R, using the twitteR library and the other required packages. I have successfully created my code up to the handshake. But as soon as I reach…
PTiongsee
  • 3
  • 4
0
votes
2 answers

twitteR help unable to authorize even with registering

I'm having trouble using the twitteR package, because even with following the registration stuff with ROAuth, I still can't do crap. Here's my input/output setwd("C:/") download.file(url="http://curl.haxx.se/ca/cacert.pem",…
user1165686
  • 21
  • 1
  • 4
1
2