This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static List<Status> findReplies() { | |
Query query = new Query("iluzcit"); | |
List<Status> tweets = new ArrayList<Status>(); | |
Twitter twitter = new TwitterFactory().getInstance(); | |
try { | |
QueryResult result; | |
do { | |
result = twitter.search(query); |