Skip to content

Instantly share code, notes, and snippets.

@contee213
Created July 2, 2014 12:02
Show Gist options
  • Save contee213/ba6f34c7a38e4f33662a to your computer and use it in GitHub Desktop.
Save contee213/ba6f34c7a38e4f33662a to your computer and use it in GitHub Desktop.
twitter basics
import twitter4j.*;
/**
* Created by contee on 2014/07/02.
*/
public class HelloTwitter {
public static void main(String[] args) throws TwitterException {
Twitter twitter = TwitterFactory.getSingleton();
ResponseList<Status> homeTimeLine = twitter.getHomeTimeline();
for (Status status : homeTimeLine) {
System.out.printf(status.getText());
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment