!7 lib 1013889 // twitter4j import twitter4j.*; p { // The factory instance is re-useable and thread safe. Twitter twitter = TwitterFactory.getSingleton(); User user = twitter.verifyCredentials(); L statuses = twitter.getHomeTimeline(); print("Showing home timeline."); for (Status status : statuses) print(status.getUser().getName() + ":" + status.getText()); }