Hello every one I would like if and how it's possible to use boolean in the function stream_tweet of the rtweet package. It dosnt seemz to work like in the search_tweet function with the words OR or AND.
to prouve it juste try this two lines
tweet=stream_tweets("covid",token = token) many result
tweet2=stream_tweets("covid OR vaccin",token = token) #no result ,
Can you please help and if is not possible, do you know an other solution ? thank you very much
rtweet
is currently using version 1 of the Twitter API. Documentation for the stream functionality can be found here. Specifically, this bit is important:In other words, this will get you tweets with "covid" OR "vaccin":
This will get you tweets with "covid" AND "vaccin":