在Chrome自定义标签

时间:2015-09-18 16:54:27

标签: android

之前的问题question意味着改变Cookie Jar是不可能的。是否至少有一种方法可以在webcall的标题中传递参数,即:用于身份验证。

1 个答案:

答案 0 :(得分:0)

我做了以下操作,当我检查所做的请求时,它看起来像我的" 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在自定义标签中执行身份验证。