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 was archived by the owner on Nov 10, 2024. It is now read-only.
I'm using get_favorites to receive some users likes. It seems to randomly fail for some users. I figured these were always users with short ids. E.g.:
get_favorites("515880511",token=token)
Error: Twitter API failed [401]
* ()
The documentation says "User identifiers look like regular numbers, but are actually 64-bit integers which can't be stored in R's numeric vectors. For this reason, rtweet always returns ids as strings." so I am storing the id as a string.
Expected behavior
The expected behavior would be to return a set of "liked" tweets
Problem
I'm using
get_favoritesto receive some users likes. It seems to randomly fail for some users. I figured these were always users with short ids. E.g.:The documentation says "User identifiers look like regular numbers, but are actually 64-bit integers which can't be stored in R's numeric vectors. For this reason, rtweet always returns ids as strings." so I am storing the id as a string.
Expected behavior
The expected behavior would be to return a set of "liked" tweets
Reproduce the problem
rtweet version
‘0.7.0.9000’