redouane59 / twittered

Twitter API client for Java developers
Apache License 2.0
237 stars 65 forks source link

Allow filter with language #268

Closed Boby024 closed 3 years ago

Boby024 commented 3 years ago

I wanted to ask if it would be possible to filter with lang (i.e: en, es, etc ...) ? Because for my project I would sometimes need to crawl only tweets in English or in German.

redouane59 commented 3 years ago

Hi @Boby024 , As explained on the twitter documentation, you can use various operators inside your search query. ex: (happy OR happiness) lang:en See : https://developer.twitter.com/en/docs/twitter-api/tweets/search/integrate/build-a-query

Boby024 commented 3 years ago

@redouane59 thanks