0

I am using Android 1.6. I want to integrate a Twitter button to share songs on my web-based application to my Twitter followers. For that, I integrated the jtwitter.jar file into my application.

But it is not accepting the username and password that I provide.

I am using the following statement to check the authentication:

twitter = new Twitter(username, password);
Jason Plank
  • 2,336
  • 5
  • 31
  • 40
Raghu Mudem
  • 6,793
  • 13
  • 48
  • 69

1 Answers1

1

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

Jonas Elfström
  • 30,834
  • 6
  • 70
  • 106