之前的问题question意味着改变Cookie Jar是不可能的。是否至少有一种方法可以在webcall的标题中传递参数,即:用于身份验证。
我做了以下操作,当我检查所做的请求时,即使我的“Value”标题通过,我的“Cookie”标题也会被Chrome自定义标签取代。
Bundle headersBundle = new Bundle();
headersBundle.putString("Value", value);
headersBundle.putString("Cookie", cookie);
CustomTabsIntent customTabsIntent = CustomTabsIntent.Builder().build();
customTabsIntent.intent.putExtra(android.provider.Browser.EXTRA_HEADERS, headersBundle);
intent.launchUrl(context, uri);
This answer没有提供消息来源,但它表示目前无法改变Chrome自定义标签上的cookie jar。
编辑:
并且this answer建议使用Smart Lock for Passwords on Android在自定义选项卡中执行身份验证。