This vignette provides a quick tour of the R package, describing what could be possible to do.
library("rtweet")
First you should set up your own credentials, lease read the vignette("auth", "rtweet")
.
You can post tweets with:
tweet_post(paste0("My first tweet with #rtweet #rstats at ", Sys.time()))
user_self()
You can search tweets:
rstats <- tweet_search_recent("#rstats", n = 100)
tweets_peace <- tweet_search_all("peace", n = 250000, retryonratelimit = TRUE)
Retrieve a list of all the accounts a user follows.
user_following("1234565")
If you really want all the users that follow the account we can use user_follower()
:
R_foundation_flw <- user_follower("1599030512919650304")
We can use user_search()
:
users <- user_search(c("1599030512919650304", "2244994945"))
Get the most recent tweets from R Foundation.
R_foundation_tline <- user_timeline("1599030512919650304")
Get the 10 recently favorited statuses by R Foundation.
R_foundation_favs <- user_liked_tweets("1599030512919650304")
You can list those users muted:
um <- user_muted(user_self()$id)
You can block users and unblock them:
user_block("rtweet") user_unblock("rtweet")
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.