Home > Software design >  Azure Active Directory MFA
Azure Active Directory MFA

Time:03-02

Our clients uses Azure AD for their operations and wanted to integrate the Azure AD MFA to our web app (PHP) for additional security. Is this possible without using the Microsoft Identity Platform (SSO)? I also cant seem to find a REST API for the Azure AD MFA. Any alternate options that I could use for implementing MFA? Some recommendations would be highly appreciated. Thank you.

CodePudding user response:

If you have not already registered the php app in azure ad like below: Quickstart: enter image description here

next

enter image description here

Or you can directly go for conditional access and select app required while creating access policy.

enter image description here

After all set up in conditional access, make sure to Enable policy and save ,to start authenticating with azure ad which requires MFA.

Also check references:

  1. Azure AD authentication with PHP using Microsoft Graph. a single PHP page
  2. Deployment considerations for Azure AD Multi-Factor Authentication | Microsoft Docs
  3. Integrate Azure Multi-Factor-Authentication in website to authenticate its users - Stack Overflow
  • Related