-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
onReceivedHttpAuthRequest is not called in IOS #583
Comments
Oh interesting, I was just thinking about opening a bug for this. I am deeply in trouble right now, as I am using headlessInAppWebView for navigating through pages to grab data for my app. However in some occasions I need NTLM. I hope this can be fixed in near future, as this is completely rendering InAppWebView useless for me right now. :( |
Hello, I also had the same problem in NTLM authentication in IOS and the method was not started due to the absence of calls: NSURLAuthenticationMethodNegotiate and NSURLAuthenticationMethodNTLM.
.... |
This thread has been automatically locked since there has not been any recent activity after it was closed. If you are still experiencing a similar issue, please open a new bug and a minimal reproduction of the issue. |
Description
I have created an app to load the website using NTLM for authentication. i am using onReceivedHttpAuthRequest to proceed with the authentication. it is work perfectly in Android, but onReceivedHttpAuthRequest is not called in IOS.
onReceivedHttpAuthRequest: (InAppWebViewController controller, HttpAuthChallenge challenge) async {
return re=HttpAuthResponse(username: _userName, password: _password, action:
HttpAuthResponseAction.PROCEED, permanentPersistence: true);
}
I will really appreciate if anyone can help m e on this issue.
Thank you.
The text was updated successfully, but these errors were encountered: