Twitter rtweet file error

#install.packages("rtweet")
library(rtweet)
library(tidyverse)
?rtweet
getwd()

twitter_tokens <- c(
create_token(app = "Twitter_Amerant",
consumer_key = "mykey",
consumer_secret = "key secret",
access_token = "token",
access_secret = "toekn secret" ))

copy/paste output

packageVersion("rtweet")

rt <- search_tweets("#bank", n = 100, include_rts = FALSE,
token = twitter_tokens )

and I am getting this error:

"Error in file(file, mode) : cannot open the connection
In addition: Warning message:
In file(file, mode) :
cannot open file '/home/froche@msctree1.rds': Permission denied"

I look into the home directory for the hidden file and there is no such file as "froche@msctree1.rd"

I have clean the environment re-install rtweet package ad the problem persists

I kind of solve it by
using
"set_renv = FALSE"
in the function create_token

Now I am getting this error

"Error: API did not return json"

I would recommend to use twitter_tokens <- create_token(....). What code did you run to get that error?

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.