lookup_tweets | R Documentation |
Get tweets data for given statuses (status IDs).
lookup_tweets( statuses, parse = TRUE, token = NULL, retryonratelimit = NULL, verbose = TRUE )
statuses |
User id or screen name of target user. |
parse |
If |
token |
Expert use only. Use this to override authentication for
a single API call. In most cases you are better off changing the
default for all calls. See |
retryonratelimit |
If If you expect a query to take hours or days to perform, you should not
rely soley on |
verbose |
Show progress bars and other messages indicating current progress? |
A tibble of tweets data.
Other tweets:
get_favorites()
,
get_mentions()
,
get_timeline()
,
lists_statuses()
,
search_tweets()
if (auth_has_default()) { statuses <- c( "567053242429734913", "266031293945503744", "440322224407314432" ) ## lookup tweets data for given statuses tw <- lookup_tweets(statuses) tw }
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.