Relative Content

Tag Archive for authenticationswiftui

Swiftui MSLA Logout catche issue

let authority = try MSALB2CAuthority(url: URL(string: MSALConfig.msalAuthorityURL)!) let pcaConfig = MSALPublicClientApplicationConfig(clientId: MSALConfig.msalClientID, redirectUri: MSALConfig.msalRedirectURL, authority: authority) pcaConfig.knownAuthorities = [authority] let application = try MSALPublicClientApplication(configuration: pcaConfig) try application.remove(account) I’m using this code for logout …is getting logout successfully. But when I login again its not asking username and password .directly moving into dashboard screen. Need to […]

Swiftui MSLA Logout catche issue

let authority = try MSALB2CAuthority(url: URL(string: MSALConfig.msalAuthorityURL)!) let pcaConfig = MSALPublicClientApplicationConfig(clientId: MSALConfig.msalClientID, redirectUri: MSALConfig.msalRedirectURL, authority: authority) pcaConfig.knownAuthorities = [authority] let application = try MSALPublicClientApplication(configuration: pcaConfig) try application.remove(account) I’m using this code for logout …is getting logout successfully. But when I login again its not asking username and password .directly moving into dashboard screen. Need to […]