HEllo everyone!
I need some help!
This is my code:
library(rtweet)
library(ROAuth)
consumer_key <- "XXXXXX"
consumer_secret <-"XXXXXXX"
access_token <- "XXXXXXXX"
access_secret <- "XXXXXXXX"
create_token(app="XXXXX", consumer_key = consumer_key, consumer_secret = consumer_secret, access_token = access_token, access_secret = access_secret)
dcpm_a<- search_tweets("XXXXXXX", include_rts = FALSE, retryonratelimit = TRUE)
View(dcpm_a)
write_as_csv(dcpm_a, "provatweet.csv")
With this code I can get all the tweet that contain a certain word. Someone know what is the code to ask all the geo-tweet in a bounding box??
Thanks for your time