Where can I find Twitter4J Query tweet details?

Hi, I have this project that I need to use Java to access twitter api, and I found Twitter4j easy to use and tried some samples from the site. However, I cannot find class information regarding Queryquery strings for this object, does anyone know the exhaustive information for this?

Greetings.

+5
source share
2 answers

If in the query string you understand the value in the query field, this is literally any text that you can enter in the search field on Twitter. There is no list of examples because it is so wide open. Just use what you might be thinking about at that particular moment in time.

+6
source

The linked JavaDoc page is where I would start (select the version of the library you are using) + search for “Twitter4J request examples” on Google.

This is what you do not need in this: http://twitter4j.org/en/code-examples.html

+1
source

All Articles