I am trying to write a simple twitter client using twitter4j, but I can't seem to get past the first step - configuring the parameters. There is a configuration page on the site that says I need to have a twitter.properties
file at root with following contents:
debug=true
oauth.consumerKey=*********************
oauth.consumerSecret=******************************************
oauth.accessToken=**************************************************
oauth.accessTokenSecret=******************************************
What I am unable to figure out is what should go in place of the asterisks, and how do I obtain those values? Please help.
PS: This is my first time with OAuth and twitter4j, so please be gentle!