How Can Get Geo-Tweet In A Bounding Box Starting From My Code?

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

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.