Horst1102 opened a new issue #625: Add something similar to onReceivedHttpAuthRequest from Android Version to iOS Version URL: https://github.com/apache/cordova-plugin-inappbrowser/issues/625 # Feature Request ## Motivation Behind Feature We want to perform basic auth. ## Feature Description In the Android Version of this plugin it is possible to "inject" some basic auth. We want to do this in the ios Version aswell. ## Alternatives or Workarounds We extendes the method onReceivedHttpAuthRequest in android like so: ``` if (UserName != null && Password!= null) { handler.proceed(UserName, Password); return; } ``` Username and password will be fetched out of a parameter from the url.
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
