Skip to content

Instantly share code, notes, and snippets.

@Shebella
Created August 26, 2014 14:54
Show Gist options
  • Save Shebella/a865a32e3ce8f131e368 to your computer and use it in GitHub Desktop.
Save Shebella/a865a32e3ce8f131e368 to your computer and use it in GitHub Desktop.
ConfigurationBuilder cb = new ConfigurationBuilder();
cb.setDebugEnabled(true)
.setOAuthConsumerKey("*********************")
.setOAuthConsumerSecret("******************************************")
.setOAuthAccessToken("**************************************************")
.setOAuthAccessTokenSecret("******************************************");
TwitterFactory tf = new TwitterFactory(cb.build());
Twitter twitter = tf.getInstance();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment