Azure authentication doesn't trigger any login screen

Hi, I’m using ionic view to test my app and the ms-adal plugin to authenticate

This is my code when i click the login button, but nothing is happening… Nothing pops up…
I have searched a lot on this but i’m stuck!

login() {
    var authority = "https://login.microsoftonline.com/XXXX",
    redirectUri = "http://IonicAuthenticationTest",
    resourceUri = "https://graph.windows.net",
    appId = "XXXXXXX";

    let authContext: AuthenticationContext = this.msAdal.createAuthenticationContext(authority);
    
    authContext.acquireTokenAsync(resourceUri, appId, redirectUri)
    .then((authResponse: AuthenticationResult) => {
    window.alert('Token is' + authResponse.accessToken);
    window.alert('Token will expire on' + authResponse.expiresOn);
    }).catch((e: any) => window.alert('Failed' + e));
  }

Hi @flemishguy any success on the above issue, i am also struck with same issue.

Hi @vamsi981 and @flemishguy
you may look into this thread for potentially resolving your issue:

Good luck,
Gustavo.