tags:

views:

12

answers:

1

Hi I used Android 1.6 version.I want to integrate twitter button to share songs on my web based application to my twitter followers for that i integrate jtwitter.jar file into my application but it is not taking username , password what i provided here i am using the below statement to check the authentication

twitter = new Twitter(username, password);

please solve my problem. provide full source code to put twitter share button in to android application

A: 

Twitter has moved to OAuth so you can't log in with username and password like that anymore. JTwitter supports OAuth.

Jonas Elfström