Skip to content

Authentication

Akash Gupta edited this page May 11, 2018 · 1 revision

create a twitter App

http://docs.inboundnow.com/guide/create-twitter-application/

setup a twitter authentication

twitterauth<-function(){
  #install.packages("TwitteR")
  require('twitteR')
  api_key<- "put api key here"
  api_secret <- "put api sceret key here"
  access_token <- "put access token here"
  access_token_secret <- "pu access secret here"
  setup_twitter_oauth(api_key,api_secret,access_token,access_token_secret)
}

Clone this wiki locally