
Hi i have integrated twitter in my android application.here the proble
You need to force login second time to resolve this issue,
So just add the force_login=true in your twitter authorize url.
I mean just change the below line of code in TwitterApp.java class (if you have a class file with different name then search in your project with DefaultOAuthProvider)
mHttpOauthprovider = new DefaultOAuthProvider("http://twitter.com/oauth/request_token",
"http://twitter.com/oauth/access_token",
"http://twitter.com/oauth/authorize?force_login=true");
after adding force_login=true webview loading issue will be resolve but every time you need to enter login and password.
I was stuck whole day to resolve this issue.