I’m currently working on a web application that integrates Microsoft authentication using MSAL and Azure AD. My goal is to implement a workflow where a user can approve or reject a request directly through Microsoft Authenticator.
Here’s the flow I envision:
1.- User logs in to the web app using their Microsoft account.
2.- When a specific action requires approval (e.g., accessing sensitive data), the application should trigger an MFA request.
3.- A notification should be sent to Microsoft Authenticator, prompting the user to approve or reject the action.
4.- The web app should wait for the user’s response to determine if the action is approved or rejected.
I’ve set up the necessary authentication and can retrieve user information, but I’m unsure how to properly initiate the MFA request to send the notification to Authenticator and handle the approval response.
Does anyone have experience with this workflow? Are there any specific API calls or configurations I should be aware of to accomplish this?
Thank you for your help!
I currently have the login implemented and can access user information. However, I have not been able to issue a request for a notification to be sent to Microsoft Authenticator.