Well, that was not a search. Obviously, the tweet is called Status , and the code to get one by ID:
final Twitter twitter = new TwitterFactory().getInstance(); twitter.setOAuthConsumer(CONSUMER_KEY, CONSUMER_KEY_SECRET); AccessToken accessToken = new AccessToken(TWITTER_TOKEN, TWITTER_TOKEN_SECRET); twitter.setOAuthAccessToken(accessToken); try { Status status = twitter.showStatus(Long.parseLong(tweetID)); if (status == null) {
source share