Open ebravofm opened 5 years ago
I'm having the same issue
i'm having the same problem as well, did anyone find a solution?
@ebravofm @joaoakio @jimeneztyler
botornot.character <- function(x, fast = FALSE) { x <- x[!is.na(x) & !duplicated(x)] x <- rtweet::get_timelines(x, n = 100) botornot(x, fast = fast) }
to
botornot.character <- function(x, fast = FALSE) { x <- x[!is.na(x) & !duplicated(x)] if (fast) { x <- rtweet::lookup_users(x) } else { x <- rtweet::get_timelines(x, n = 100) } botornot(x, fast = fast) }
library(devtools) install_github("(whatever your github username is)/tweetbotornot", dependencies = TRUE)
I've also opened a pull request to make those changes to this repo to fix this issue.
@Jupaoqq thanks so much! This worked for me
Hi, i'm back again with the same issue. I have a large list of user names and keep getting the rate limit exceeded message when running tweetbotornot. I edited the code to include @Jupaoqq suggestion, which worked previously but isn't this time. Any ideas on whats going on? or is anyone else having this issue?
Hi!
I'm running this snippet on a csv file containing 200 user names:
library("tweetbotornot")
rts <- read.csv(file="rts.csv", header=TRUE, sep=",")
data <- tweetbotornot(rts$Twitter.Name, fast = TRUE)
I'm setting the fast argument on, however I'm getting this error:
Warning message: “Rate limit exceeded - 88” Error in if (n%/%200 < n.times) {: argument is of length zero Traceback:
Am i doing something wrong?
Thanks!