Androidのブラウザにヘッダーを追加したいアプリケーションに取り組んでいます。Google chrome では問題なく動作しています。
ただし、これは Firefox、UC ブラウザー、OperaMini、Dolphin などの他の利用可能なブラウザーでは機能しません。
以下は私が試したコードです。
Intent mIntent = new Intent(Intent.ACTION_VIEW,Uri.parse(URL));
Bundle bundle = new Bundle();
bundle.putString(Constants.REQUEST_HEADER_TOKEN, "token");
bundle.putString(Constants.REQUEST_HEADER_AUTH, "Basic bfjdslfs");
mIntent.putExtra(Browser.EXTRA_HEADERS, bundle);
startActivity(mIntent);
事前に感謝します。