-
Notifications
You must be signed in to change notification settings - Fork 137
New issue
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
Warning: /1.1/statuses/user_timeline.json - Not authorized. when using Fast mode #23
Comments
Hi, I have the same problem, I think that the reason for the error is that you exceed twitter API. I am using FAST parameter too and in the documentation is that you can call 90 000 calls... but it's not working for me, my limit with FAST parameter is 180, same without. In my case error looks like: Warning: /1.1/statuses/user_timeline.json - Not authorized. My theory is that during the analyze I reach API limit. |
Clearly, the problem is that the script is not considering the FAST param at all. You can see that it is getting the user's timelime (/1.1/statuses/user_timeline.json endpoint is the user's timeline). botornot should receive fast = fast I guess, Im not an expert in R though. Anyway, I have already tried hardcoding the default parameter to TRUE but I'm getting another error: Output of summary(rlang::last_error()):
@mkearney could you give us a hand here?? Thank you! |
botornot.character <- function(x, fast = FALSE) { to botornot.character <- function(x, fast = FALSE) {
library(devtools)
I've also opened a pull request to make those changes to this repo to fix this issue. |
Hi! I'm getting this error from the Twitter API:
Warning: /1.1/statuses/user_timeline.json - Not authorized.
Im calling the script with the Fast parameter set to true, so it shouldn't get the user's timeline, right?
data <- tweetbotornot(users, fast=TRUE)
The text was updated successfully, but these errors were encountered: