Skip to main content
Docs

Add Microsoft Azure Entra ID as a social connection

You will learn the following:

  • Use Microsoft Azure Entra ID to authenticate users with OAuth
  • Protect your app from the nOAuth exploit

Enabling OAuth with Microsoft Azure Entra ID (formerly Active Directory) allows your users to sign up and sign in to your Clerk app with their Microsoft account.

Configure for your development instance

For development instances, Clerk uses preconfigured shared OAuth credentials and redirect URIs—no other configuration is needed.

  1. In the Clerk Dashboard, navigate to the SSO connections page.
  2. Select Add connection and select For all users.
  3. In the Choose provider dropdown, select Microsoft.
  4. Select Add connection.

Configure for your production instance

For production instances, you must provide custom credentials.

To make the setup process easier, it's recommended to keep two browser tabs open: one for the Clerk Dashboard and one for your Microsoft Azure portal.

Enable Microsoft as a social connection

  1. In the Clerk Dashboard, navigate to the SSO connections page.
  2. Select Add connection and select For all users.
  3. In the Choose provider dropdown, select Microsoft.
  4. Ensure that both Enable for sign-up and sign-in and Use custom credentials are toggled on.
  5. Save the Redirect URI somewhere secure. Keep this modal and page open.

Create a Microsoft Entra ID app

Tip

If you already have a Microsoft Entra ID app you'd like to connect to Clerk, select your app from the Microsoft Azure portal and skip to the next step in this tutorial.

  1. On the homepage of the Microsoft Azure portal, in the Azure services section, select Microsoft Entra ID. If you don't see this option, select More services. You'll be redirected to the All Services page.
  2. In the sidebar, open the Manage dropdown and select App registrations.
  3. Select New Registration. You'll be redirected to the Register an application page.
  4. Complete the form as follows:
    1. Under Name, enter your app name.
    2. Under Supported account types, select Accounts in any organizational directory (Any Microsoft Entra ID tenant – Multitenant) and personal Microsoft accounts (e.g. Skype, Xbox).
    3. Under Redirect URI (Optional), select Web as the platform and enter the Redirect URI you saved from the Clerk Dashboard.
    4. Select Register to submit the form. You'll be redirected to the Overview page of your new app. Keep this page open.

Get your Client ID and Client Secret

  1. From your app's Overview page, save the Application (client) ID somewhere secure.
  2. In the sidebar, select Certificates & secrets.
  3. Select New client secret.
  4. In the modal that opens, enter a description and set an expiration time for your secret.

    Important

    When your secret expires, your social connection will stop working until you generate a new client secret and add it to your Clerk app.

  5. Select Add.
  6. Save the Value somewhere secure. You'll add this secret and your client ID to your Clerk app later.

Connect your Entra ID app and get your redirect URI

  1. In the Clerk Dashboard, navigate to the SSO connections page.
  2. Select Add connection and select For all users.
  3. In the Choose provider dropdown, select Microsoft.
  4. Ensure that both Enable for sign-up and sign-in and Use custom credentials are toggled on. Then:
    • Under Client ID, paste the value you copied from Application (client) ID in the Microsoft Azure portal.
    • Under Client Secret, paste the client secret value you generated.
    • Save the Redirect URI somewhere secure.
    • Select Add connection.

Enable OpenID

To connect your Clerk app to your Microsoft app, set the Redirect URI in your Microsoft Azure portal.

  1. Navigate back to the Microsoft Azure portal.
  2. In the sidebar, open the Manage dropdown and select Authentication.
  3. Select Add a platform.
  4. Select Web.
  5. In the Redirect URIs field and the Front-channel logout URL field, paste the Redirect URI you copied from the Clerk Dashboard.
  6. Under Implicit grant and hybrid flows, check both Access tokens and ID tokens.
  7. Select Configure to save the changes.

Set the Client ID and Client Secret in the Clerk Dashboard

  1. Navigate back to the Clerk Dashboard where the modal should still be open. Paste the Client ID and Client Secret values that you saved into the respective fields.
  2. Select Add connection.

Note

If the modal or page is no longer open, navigate to the SSO connections page in the Clerk Dashboard. Select the connection. Under Use custom credentials, paste the values into their respective fields.

The simplest way to test your connection is to visit your Clerk app's Account Portal, which is available for all Clerk apps out-of-the-box.

  1. In the Clerk Dashboard, navigate to the Account Portal page.
  2. Next to the Sign-in URL, select Visit. The URL should resemble:
  • For developmenthttps://your-domain.accounts.dev/sign-in
  • For productionhttps://accounts.your-domain.com/sign-in
  1. Sign in with your connection's credentials.

Secure your app against the nOAuth vulnerability

nOAuth is an exploit in Microsoft Entra ID OAuth apps that can lead to account takeovers via email address spoofing. Clerk mitigates this risk by enforcing stricter checks on verified email addresses.

For further security, Microsoft offers an optional xms_edov claim, which provides additional context to determine whether the returned email is verified.

To enable this optional claim, you must:

  1. In the Microsoft Azure portal, navigate to your app.
  2. In the sidebar, select Token configuration.
  3. Select Add optional claim.
  4. For the Token type, select ID. Then, in the table that opens, enable the email and xms_pdl claims.
  5. At the bottom of the modal, select Add. A new modal will prompt you to turn on the Microsoft Graph email permission. Enable it, then select Add to complete the form.

    Note

    At the time of writing, the xms_edov claim is still in preview and may not be available for all apps. We'll choose another claim and rename it in the manifest later.

  6. Repeat the previous steps for Token type, but select Access instead of ID. The Optional claims list should now show two claims for email and two for xms_pdl: one each for ID and Access.
  7. In the sidebar, go to Manifest.
  8. In the text editor, search for "acceptMappedClaims" and set its value from null to true.
  9. Search for "optionalClaims", where you'll find the idToken and accessToken arrays. Each array has an object with the name xms_pdl. Change the name to xms_edov.
  10. At the top of the page, select Save.
  11. In the sidebar, navigate back to Token configuration and confirm that the Optional claims list includes two claims for email and two for xms_edov: one each for ID and Access.

With these steps complete, Microsoft will send the xms_edov claim in the token, which Clerk will use to determine whether the email is verified, even when used with Microsoft Entra ID.

Limitations

  • Currently, Clerk supports only the common tenant type, which allows sign-ins both from organization members and public Microsoft users.
    • The option to selecting the desired tenant type (common, organizations, consumers or specific tenant ID) will be available in an upcoming version of Clerk.
  • Only credentials of type secret are supported (not the certificate type).

Tip

If you're using SAML with Microsoft, the different tenant types are supported, and you can disregard these limitations.

Feedback

What did you think of this content?

Last updated on