we use Azure AD with MFA in our company. After providing the MFA code to the login UI and clicking on "check code" button nothing happens. Just the login embedded browser window starts to indicate some loading. But the loading never stops (Promise callbacks never get fired). Could you please help me with this problem?
Here's some code we use in login method of login component TypeScript:
Bernhard Huber
Dear all,
we use Azure AD with MFA in our company. After providing the MFA code to the login UI and clicking on "check code" button nothing happens. Just the login embedded browser window starts to indicate some loading. But the loading never stops (Promise callbacks never get fired). Could you please help me with this problem?
Here's some code we use in login method of login component TypeScript:
.then((user: User) => {
this.navigateHome();
console.log("user: " + JSON.stringify(user));
})
.catch((error: Errors.BaseError) => {
alert("An error occurred. Check your Kinvey settings.");
console.log("error: " + error);
});
Kind regards
Bernhard Huber