We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
"browser.on('loaderror')" does not work properly on iOS.
I have a function to handle the loaderror of my page; this function calls another function and then closes the browser:
const authUrl = ${authorizationEndpoint}? + client_id=${clientId}& + redirect_uri=${redirectUri}& + response_type=${responseType}& + scope=${scopes.join(' ')}& + code_challenge=${codeChallenge}& + 'code_challenge_method=S256';
${authorizationEndpoint}?
client_id=${clientId}&
redirect_uri=${redirectUri}&
response_type=${responseType}&
scope=${scopes.join(' ')}&
code_challenge=${codeChallenge}&
const browser = this.inAppBrowser.create(authUrl, '_blank', { location: 'yes', hidenavigationbuttons: 'yes', hideurlbar: 'yes', },); browser.on('loaderror').subscribe(event => { this.MyFunction(); browser.close(); });
The load error message appears on my screen, but the function is not executed:
The same code works perfectly on Android, but on iOS, it freezes on the load error screen.
iOS: 16.6.1 Device: iPhone XR
@ionic/[email protected] [email protected] [email protected] [email protected]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Bug Report
Problem
"browser.on('loaderror')" does not work properly on iOS.
What is expected to happen?
I have a function to handle the loaderror of my page; this function calls another function and then closes the browser:
MyCode:
const authUrl =
${authorizationEndpoint}?
+client_id=${clientId}&
+redirect_uri=${redirectUri}&
+response_type=${responseType}&
+scope=${scopes.join(' ')}&
+code_challenge=${codeChallenge}&
+'code_challenge_method=S256';
What does actually happen?
The load error message appears on my screen, but the function is not executed:
Information
The same code works perfectly on Android, but on iOS, it freezes on the load error screen.
Environment, Platform, Device
iOS: 16.6.1
Device: iPhone XR
Version information
@ionic/[email protected]
[email protected]
[email protected]
[email protected]
Checklist
The text was updated successfully, but these errors were encountered: