我可以从Android本地访问我的webview中的HTTP cookie吗?

时间:2014-03-07 00:58:40

标签: android http cordova webview session-cookies

我正在编写Cordova应用程序,我想从插件访问其HTTP安全cookie。我想加密/禁用它,直到用户输入有效的引脚。

非常感谢所有帮助。谢谢。

1 个答案:

答案 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);
}