Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In my application, I use WebView with WebViewClient, with overriden method onReceivedHttpAuthRequest, where I prompt user to enter his credentials, using AlertDialog. When credentials are entered, I call

handler.proceed(username, password);

My problem is: In Android 4 emulator, everything works fine, user can navigate through authenticated sites without any problem, but in older Android versions, it seems that onReceivedHttpAuthRequest is called each time when user refreshes, or navigates to another page within authenticated site.

Can someone please suggest me, what am I doing wrong? Thank you.

What I tried:

Calling also

webView.setHttpAuthUsernamePassword(host, realm, username, password);

when credentials are entered and adding this piece of code before invoking login dialog in onReceivedHttpAuthRequest:

String[] usernamePassword = webView.getHttpAuthUsernamePassword(host, realm);
if (usernamePassword!=null) {
    handler.proceed(usernamePassword[0], usernamePassword[1]);
    return;
}

did not work for me - user can navigate through authenticated sites, but after logout, username and password are still stored in webView and user is logged-in automatically again - in this case I need to detect user's logout and remove stored credentials, can somebody tell me, how to do this?

Many thanks!

share|improve this question

1 Answer

Have you tried overriding shouldOverrideUrlLoading and matching with the logout url? If there is one ofcourse.

@Override  
public boolean shouldOverrideUrlLoading(WebView view, String url)  
{  
  if(url.equals("http://www.example.com/logout"){
     //clear webviews info on usr/pw
  }
  else {
    //do whatever you want to do
  }  
}

Edit:

You might also try overriding onLoadResource(WebView view, String url) if shouldOverrideUrlLoading isn't being called.

share|improve this answer
thanks for reply, your solution would work, if I need to navigate across only one authenticated site, but I need to create customized browser, able to browse any site on the internet, so I can't detect logout by matching url. :( – BerÅ¥ák Aug 31 '12 at 11:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.