This code works
mytweet <- searchTwitter("Deenma", n=100)
mytweet
but these codes dont
rt <- search_tweets(
q = "#rstats",
n = 3000,
include_rts = FALSE
)
rt
cabinet_accounts <- lists_members(owner_user = "CSPAN", slug = "the-cabinet")
staff <- lists_members(slug = "white-house-staff", owner = "digiphile")
using R studio
Yes i regenerated tokens but still not working
consumer_key = “mykey”
consumer_secret = “mysecret”
access_token = “myaccesstoken”
access_secret = “myaccesssecret”
setup_twitter_oauth(consumer_key, consumer_secret, access_token, access_secret)
i hope the code above is the right way to authenticate