本文整理汇总了Java中org.apache.cordova.CordovaHttpAuthHandler类的典型用法代码示例。如果您正苦于以下问题:Java CordovaHttpAuthHandler类的具体用法?Java CordovaHttpAuthHandler怎么用?Java CordovaHttpAuthHandler使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
CordovaHttpAuthHandler类属于org.apache.cordova包,在下文中一共展示了CordovaHttpAuthHandler类的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: onReceivedHttpAuthRequest
import org.apache.cordova.CordovaHttpAuthHandler; //导入依赖的package包/类
/**
* On received http auth request.
* The method reacts on all registered authentication tokens. There is one and only one authentication token for any host + realm combination
*/
@Override
public void onReceivedHttpAuthRequest(WebView view, HttpAuthHandler handler, String host, String realm) {
// Get the authentication token (if specified)
AuthenticationToken token = this.getAuthenticationToken(host, realm);
if (token != null) {
handler.proceed(token.getUserName(), token.getPassword());
return;
}
// Check if there is some plugin which can resolve this auth challenge
PluginManager pluginManager = this.parentEngine.pluginManager;
if (pluginManager != null && pluginManager.onReceivedHttpAuthRequest(null, new CordovaHttpAuthHandler(handler), host, realm)) {
parentEngine.client.clearLoadTimeoutTimer();
return;
}
// By default handle 401 like we'd normally do!
super.onReceivedHttpAuthRequest(view, handler, host, realm);
}