Hi to al the group, my name is Xabier and this is my first message.
I am developing a twitter application and i perform a search, but i need the number of retweets of the tweets that i get in the searh.
But if i do this i get Rate limit Exception. Here is my code.
result = twitter.search(query);
for (Tweet tweet : result.getTweets()) {
Status statusTweet=null;
try {
statusTweet= twitter.showStatus(tweet.getId());
} catch (TwitterException e) {
e.printStackTrace();
}
}
How can I solve? can i get a responseList in the search? is posible to get into the whitelisting??
thank you.