We are trying to override the headers to include an authorization header in every request in a webview in android (using Xamarin forms)
We are using a FormsWebViewClient, and overriding:
public override WebResourceResponse ShouldInterceptRequest(WebView view, IWebResourceRequest request)
Following similar code to this: https://forums.xamarin.com/discussion/87944/custom-header-in-webview
However it seems it's widely found to be impossible to do this for POST requests (GET requests are fine), but is fine on IOS, as IWebResourceRequest doesn't include the Form content, so it can't be recreated.
Has this been fixed? Or will it be?