As of April 12th, you must go to Progress SupportLink to create new support cases or to access existing cases. Please, bookmark the SupportLink URL and use the new portal to contact the support team.
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