使用场景:
使用webView打开H5网页时候,h5网页有登录逻辑,会返回token等信息,如果验证token通过,则会登录成功,反正跳到H5页面的登录页,
遇到问题:
当用户已经在我们app登录过,关闭app一段时间不使用,下次打开app,还得重新输入登录信息登录。是非常不友好的用户体验。怎么解决?(就是想实现 现在市面上普遍app无需每次都登录的操作)
列举思路:
我的思路是:获取第一次登录(H5登录时返回的token,保存到cookie中,这一步怎么获取?)下一步是我将token带过去给H5?还是让H5页面自己获取?
有没有经验的分享一下解题思路和参考源码,谢谢!
// 保留cookies,而不是在随后的重新启动后清除
CookieManager cookieManager = CookieManager.getInstance();
// 允许接受 Cookie
cookieManager.setAcceptCookie(true);
if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.LOLLIPOP) {
// 跨域cookie读取
cookieManager.setAcceptThirdPartyCookies(wv, true);
}
// 一定要给主域设置cookie,给子级地址设置,父级会无法获取到cookie值
cookieManager.setCookie("http://192.168.7.104:8080/", "token值");
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.LOLLIPOP) {
CookieSyncManager.getInstance().sync();
} else {
cookieManager.flush();
}
// 配置 WebView
WebSettings webSettings = wv.getSettings();
// 开启DOM storage API 功能
webSettings.setDomStorageEnabled(true);
// 开启database storage API功能
webSettings.setDatabaseEnabled(true);
webSettings.setLoadWithOverviewMode(true);
webSettings.setUseWideViewPort(true);
webSettings.setBlockNetworkImage(false);
webSettings.setJavaScriptEnabled(true);
webSettings.setCacheMode(WebSettings.LOAD_NO_CACHE);
上面源码是否需要整改?