I am trying to load my token auth into the header of a WebView on Android API18, when I make the call it says HTTP ERROR 400. The size of the request headers is too long
Map<String, String> extraHeaders = new HashMap<String, String>();
extraHeaders.put("Authorization","Bearer - " + token);
host.loadUrl(url, extraHeaders);
Any ideas how to override this if possible, as I want to pass the token in the authorize header?