第三方Cookie无法正常运行,我已经尝试过-CookieManager.getInstance()。acceptThirdPartyCookies();

时间:2019-03-30 13:00:45

标签: android webview

我已经检查了许多可能的方法,但这不起作用。

if(Build.VERSION.SDK_INT >= 21) {
    android.webkit.CookieManager.getInstance().setAcceptThirdPartyCookies(mWebView, true); 
    android.webkit.CookieManager.getInstance().acceptThirdPartyCookies(mWebView);
}

1 个答案:

答案 0 :(得分:0)

尝试一下

if (Build.VERSION.SDK_INT >= 21) {
CookieManager cookieManager = CookieManager.getInstance();
cookieManager.setAcceptThirdPartyCookies(mWebView, true);
}