Skip to content

Instantly share code, notes, and snippets.

@geroldcsendes
Last active November 15, 2019 13:20
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
Setting up rtweet
appname <- "ceu_football_managers"
key <- <YOUR_KEY_HERE>
secret_key <- <YOUR_SECRET_KEY_HERE>
access_token <- <YOUR_ACCESS_TOKEN_HERE>
access_secret <- <YOUR_SECRET_ACCESS_TOKEN_HERE>
# Create token named "twitter_token"
twitter_token <- create_token(
app = appname,
consumer_key = key,
consumer_secret = secret_key,
access_token = access_token,
access_secret = access_secret)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment