其他分享
首页 > 其他分享> > 在android.webkit.CookieManager中存储会话Cookie

在android.webkit.CookieManager中存储会话Cookie

作者:互联网

我使用Volley库执行应用程序的请求.现在,我确实需要按照以下顺序执行一些操作:

>使用Volley库的POST请求
>我收到带有会话cookie的204响应
>我需要设置该cookie与WebView一起使用

我需要对Volley执行第一个请求,因为响应的标头包含下一个请求的uri.比我需要捕获该标头.

问题是我不能使用CookieManager保存会话cookie,因为正如doc所说:“所设置的cookie一定不能过期,并且不能是会话cookie,否则它将被忽略.”.

有没有一种方法可以存储该cookie以便以后与WebViews一起使用?

解决方法:

奇怪的是,该文档已过时或完全不正确,似乎CookieManager可以毫无问题地保存会话cookie. (Here’s the bug report)

此代码段对我有用:

private void syncCookie(String domain, Cookie sessionCookie) {
    CookieSyncManager.createInstance(this);
    CookieManager cookieManager = CookieManager.getInstance();
    cookieManager.removeSessionCookie();
    String cookieString = sessionCookie.getName() + "=" + sessionCookie.getValue() + "; domain=" + sessionCookie.getDomain();
    cookieManager.setCookie(domain, cookieString);
    CookieSyncManager.getInstance().sync();
}

标签:cookies,android-volley,webview,android
来源: https://codeday.me/bug/20191121/2050573.html