You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 10, 2024. It is now read-only.
Hi @mkearney, and thanks for a research life-changing piece of software.
search_tweets() seems to provide a warning if the token is invalid or expired, but lookup_statuses() does not. Is this intended--or, should both show a warning?
library(rtweet)
rt<- search_tweets(
"#rstats", n=100, include_rts=FALSE
)
#> Warning: 89 - Invalid or expired token.#> Warning: Invalid or expired token.rt#> data frame with 0 columns and 0 rowsstatuses<- c(
"567053242429734913",
"266031293945503744",
"440322224407314432"
)
tw<- lookup_statuses(statuses)
tw#> data frame with 0 columns and 0 rows
Hi @mkearney, and thanks for a research life-changing piece of software.
search_tweets()
seems to provide a warning if the token is invalid or expired, butlookup_statuses()
does not. Is this intended--or, should both show a warning?Created on 2019-06-09 by the reprex package (v0.2.1)
The text was updated successfully, but these errors were encountered: