wrobins / cordova-plugin-msal

Use the newest Microsoft MSAL library in your Cordova-based project!
Apache License 2.0
23 stars 63 forks source link

signInInteractive is not letting inside success or error after authenticated successfully on iOS #108

Open vishwa12345 opened 1 year ago

vishwa12345 commented 1 year ago

Thanks for this wonderful plugin @wrobins.

Android is working fine but for iOS i am facing below issue.

 window.cordova.plugins.msalPlugin.msalInit(function () {           
            window.cordova.plugins.msalPlugin.signInInteractive((resp) => {
                       alert("Sucess");
            }, (err1) => {
              alert("Failed");
            });
  }, function (err2) {
         console.log(err2);
  }, options);

Using iOS emulator i am successfully able to login, but after login control is not coming to either success or error part of signInInteractive method.

Please help me on this, Thanks in Advance.

iamandreadompe commented 7 months ago

Same here, @vishwa12345 did you find any solution?