I'm creating a desktop Twitter client in Java using the twitter4j library. I've got my app's API key and secret. Now after I obtain the request token I get the authorization URL which the user has to open in a web browser, login from his account, allow access to the app, and retrieve the access pin. After he enters this pin in the app, the app gets permanent access to the users account. Is there a way in Java to automate the login/fetching the pin process?
What I want to achieve is, the user should enter his username and password in the app itself, and the app should automatically fetch the access pin. I don't want any web browser intervention. How can I achieve this? Please help!