Title says it all really.
I’m using Twitter4j in Eclipse in order to get tweet data for a university project I’m doing and I have stumbled upon a problem.
I have successfully created a Twitter Application and obtained the keys;
I have included the “twitter4j-core-2.2.5.jar” in the Project by created a lib folder and adding the JAR to it using ‘build path’ > ‘add external archives’
I am using “GetUserStatus” class as demonstrated here:
I have built the project and found no errors, however when I run the application as Java Application I get the following message in ‘Console’;
" GetUserStatus [Java Application] C:\Program Files\Java\jre7\bin\javaw.exe"
Does anyone have any idea where I’m going wrong?
I have also put my keys in the GetUserStatus class
twitter.setOAuthConsumer(“consumer_key”,“consumer_secret”);
twitter.setOAuthAccessToken(new AccessToken(“access_token”,“access_secret”));