-
Notifications
You must be signed in to change notification settings - Fork 2
Authentication
Akash Gupta edited this page May 11, 2018
·
1 revision
http://docs.inboundnow.com/guide/create-twitter-application/
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)
}