simple_auth
simple_auth copied to clipboard
Setting useEmbeddedBrowser flag to true shows SFSafariViewController instead of an embedded WKWebView.
Some digging around in the commit and version history revealed that this code block was removed while bumping the version from 2.0.5 to 2.0.6.
if(authenticator.useEmbeddedBrowser) [WebAuthenticatorWindow presentAuthenticator: authenticator]; else [SFSafariAuthenticator presentAuthenticator:authenticator];
We were using the embedded browser for our Logins using KeyCloak.
The commit itself didn't have much info regarding this change. Is there an another way to use embedded browser in iOS?