我正在编写Cordova应用程序,我想从插件访问其HTTP安全cookie。我想加密/禁用它,直到用户输入有效的引脚。
非常感谢所有帮助。谢谢。
答案 0 :(得分:0)
我这样做的方法是启用/禁用整个应用程序的cookie:
CookieManager mCookieManager = CookieManager.getInstance();
CookieSyncManager.createInstance(this);
mCookieManager.setAcceptCookie(false); //disables cookies for the WebView until the user enters a correct pin
if(getUsersPin()) { //getUsersPin() gets the pin from the user
mCookieManager.setAcceptCookie(true);
}