ropensci-archive/rtweet

Three new fields added to tweet and rtweet does not recognize it in Rstudio

Closed this issue · 1 comments

I am trying to retrieve tweets from twitter on a full archive basis. However, I finally managed to work things out on my developer page, but the code seems to stumble upon an error that I can not find anywhere on the internet. On stack overflow they redirected me to this page as the tweet package may need some updates.

I expected to receive tweets, but then outside the range of 6-9 days, since I am using the full archive search.

This is my code without my tokens:

install.packages("RCurl")

library("RCurl")

install.packages("rtweet")

library("rtweet")

consumer_key <- ".."
consumer_secret <- ".."
access_token <- ".."
access_secret <- ".."
app <- "..."

token = rtweet::create_token(app,consumer_key,consumer_secret,access_token,access_secret)

dataBTC1 <- search_fullarchive("Bitcoin", n = 1000, env_name = "Tweets", fromDate = "201501010000")

rtweet version

Output is:

Error in tweet(x$quoted_status) :
Unidentified value: edit_history, edit_controls, editable. Please open an issue and notify the maintainer. Thanks!

packageVersion("rtweet")
1.0.2

There seems to be no problem with my codes from the Twitter API, as the searchTwitter command works and returns a bunch of tweets. However, this is limited to 6-9 days and I need tweets from years ago. I was hoping that this issue can be resolved as I am working on my thesis.

llrs commented

This is a duplicate of #738. I'm closing this to track this problem in a single issue