I've been building a project using Twitter4J, the problem is that don't matter where I try to run this code it always use my Twitter account to authenticate and worst: It doesn't authenticate. When I open the script it has already authenticated with my account without asking me to accept or not. This is the code I'm using:
ConfigurationBuilder cb = new ConfigurationBuilder();
cb.setDebugEnabled(true)
.setOAuthConsumerKey("********")
.setOAuthConsumerSecret("****************************************")
.setOAuthAccessToken("***********************************************")
.setOAuthAccessTokenSecret("***************************************");
TwitterFactory tf = new TwitterFactory(cb.build());
Twitter twitter = tf.getInstance();
What I'm doing wrong and how to correct it?