jestebango / uoc

Prácticas de WEB SCRAPING de la asignatura TIPOLOGÍA DE DATOS
1 stars 2 forks source link

Scraping siguiendo el link de la profesora en Twitter #9

Closed srodriguezcep closed 7 years ago

srodriguezcep commented 7 years ago

require (twitteR) require(RCurl)

consumer_key<- 'xxxxxx' consumer_secret<- 'xxxxx' access_token<- 'xxxxxx' access_secret<- 'xxxx'

setup_twitter_oauth(consumer_key,consumer_secret,access_token, access_secret)

tweets <- searchTwitter("Codere", n=100) tweets.df <- twListToDF(tweets) tweets.df write.csv(tweets.df, file="Twitter.csv")