Supply some basic auth credentials to a WebView?
I have a WebView. I'd like to show some page from my server, but I require some basic authentication. Is there a way I can specif开发者_JAVA技巧y basic auth credentials when calling WebView.loadData() somehow? I can do this on iphone with the equivalent webview class, thinking maybe same is possible with android?
Thanks
You can call:
setHttpAuthUsernamePassword (String host, String realm, String username, String password)
read more here
精彩评论