I need to use the same browser MSAL uses in my iOS app
I’m developing an iOS app using SwiftUI. For user login, I utilize MSAL to authenticate through my identity provider. Some app functionalities require access to protected web resources, which I currently access using SFSafariViewController. These protected resources require authentication via the same identity provider used for app login. To avoid double authentication, I want to use the same browser for both MSAL authentication and accessing the protected resource. How can I achieve this?