Hello.
We want to achieve full screen presentation on iPads. We updated our sdk to version 2.1.0 which introduces safari WebAuthProvider. Unfortunately, we have a problem with this solution. Safari can’t open our authorization which is handled correctly using default one ASWebAuthenticationSession, also Apple documentation says that we need to use ASWebAuthenticationSession to have SSO.
Are we doing something wrong or there is way to have fullscreen solution with SSO ?
webAuth .scope(apiConfiguration.auth0Config.scope) .audience(apiConfiguration.auth0Config.audience) .parameters(parameters) .provider(WebAuthentication.safariProvider(style: .fullScreen)) .start { result in switch result { case .success(let credentials): observer(.success(credentials)) case .failure(let webAuthError): observer(.failure(Auth0ManagerError.authorizationFailed(sdkError: webAuthError))) } }