Encountering issue with the iOS SFSafariViewController opening the web view for the authentication flow. iOS does not receive the auth_code or auth_token from this OAuth request. The only workaround I could get to work was to disable the webview and force iOS to open the default system browser by modifying OIDAuthorizationUICoordinatorIOS.m to just call [[UIApplication sharedApplication] openURL:requestURL]; regardless of the iOS of the device.
I'm suspicious the webview is somehow suppressing, losing, or ignoring the response from the auth server.
Encountering issue with the iOS SFSafariViewController opening the web view for the authentication flow. iOS does not receive the auth_code or auth_token from this OAuth request. The only workaround I could get to work was to disable the webview and force iOS to open the default system browser by modifying
OIDAuthorizationUICoordinatorIOS.mto just call[[UIApplication sharedApplication] openURL:requestURL];regardless of the iOS of the device.I'm suspicious the webview is somehow suppressing, losing, or ignoring the response from the auth server.