SwiftUI-MSALSample
SwiftUI-MSALSample copied to clipboard
Sample project to login with MSAL using SwiftUI
application.acquireToken(with: interactiveParameters) { (result, error) in guard let result = result else { print("error \(error?.localizedDescription)") return } once we have the token from the above what method should be called...
We are getting error 50000 , When we try to open MSAL framework ,Only some device’s we are getting this issue
Hello, When trying to preview I get the following error: Build input file cannot be found: '.../GitHub/SwiftUI-MSALSample/SwiftUIMSAL/sekrets.swift'. Did you forget to declare this file as an output of a script...
Here is the log information ``` makeUIViewController(context:) init(viewModel:) viewDidLoad() loadMSALScreen() error Optional("The operation couldn’t be completed. (MSALErrorDomain error -50000.)") updateUIViewController(_:context:) ``` Here is what I did to set up the...
I kept on getting errors in the log and I realized the MSALScreenViewController called viewDidLoad() when starting and after I clicked the button. So loadMSALScreen() was called 3 times. Is...