I found an example code that can receive the PUBLIC API and filter by keywords, Here is partial:
HttpGet request = new HttpGet();
request.setURI(new URI("https://stream.twitter.com/1/statuses/filter.json?track=" + mSearchTerm));
consumer.sign(request);
HttpResponse response = client.execute(request);
InputStream in = response.getEntity().getContent();
BufferedReader reader = new BufferedReader( new InputStreamReader(in) );
But now I want this filtering function only provide tweets from user’s home timeline.
I read the official materials, it seems that “track” and getting the home timeline can be done separately, just not together.
Any way I can pass around this? Any tips to point me to the right direction are much appreciated.