Most visited

Recently visited

Added in API level 1

HttpAuthHandler

public class HttpAuthHandler
extends Handler

java.lang.Object
   ↳ android.os.Handler
     ↳ android.webkit.HttpAuthHandler


代表HTTP身份验证的请求。 该类的实例由WebView创建并传递给onReceivedHttpAuthRequest(WebView, HttpAuthHandler, String, String) 主机应用程序必须调用proceed(String, String)cancel()来设置WebView对请求的响应。

Summary

Public methods

void cancel()

指示WebView取消认证请求。

void proceed(String username, String password)

指示WebView继续使用给定的凭据进行身份验证。

boolean useHttpAuthUsernamePassword()

获取当前主机存储的凭证(即

Inherited methods

From class android.os.Handler
From class java.lang.Object

Public methods

cancel

Added in API level 1
void cancel ()

指示WebView取消认证请求。

proceed

Added in API level 1
void proceed (String username, 
                String password)

指示WebView继续使用给定的凭据进行身份验证。 使用此方法的凭证可以使用getHttpAuthUsernamePassword(String, String)从WebView的商店中getHttpAuthUsernamePassword(String, String)

Parameters
username String
password String

useHttpAuthUsernamePassword

Added in API level 1
boolean useHttpAuthUsernamePassword ()

获取是否为当前主机(即调用了onReceivedHttpAuthRequest(WebView, HttpAuthHandler, String, String)的主机)存储的凭证适合使用。 如果证书先前已被服务器拒绝当前请求,则证书不适用。

Returns
boolean whether the credentials are suitable for use

也可以看看:

Hooray!