Skip to content

Latest commit

 

History

History
46 lines (42 loc) · 2.6 KB

File metadata and controls

46 lines (42 loc) · 2.6 KB
author kengaderdus
ms.service active-directory-b2c
ms.subservice B2C
ms.topic include
ms.date 02/25/2025
ms.author kengaderdus
ms.custom sfi-ropc-blocked

To register an application in your Azure AD B2C tenant, you can use our new unified App registrations experience or our legacy Applications (Legacy) experience. Learn more about the new experience.

  1. Sign in to the Azure portal.
  2. Make sure you're using the directory that contains your Azure AD B2C tenant:
    1. Select the Directories + subscriptions icon in the portal toolbar.
    2. On the Portal settings | Directories + subscriptions page, find your Azure AD B2C directory in the Directory name list, and then select Switch.
  3. In the Azure portal, search for and select Azure AD B2C
  4. Select App registrations, and then select New registration.
  5. Enter a Name for the application. For example, ROPC_Auth_app.
  6. Leave the other values as they are, and then select Register.
  7. Record the Application (client) ID for use in a later step.
  8. Under Manage, select Authentication.
  9. Select Try out the new experience (if shown).
  10. Under Advanced settings, and section Enable the following mobile and desktop flows, select Yes to treat the application as a public client. This setting is required for the ROPC flow.
  11. Select Save.
  12. In the left menu, select Manifest to open the manifest editor.
  13. Set the oauth2AllowImplicitFlow attribute to true. If the attribute doesn't exist, add it:
    "oauth2AllowImplicitFlow": true,
  14. Select Save.
  1. Sign in to the Azure portal.
  2. Make sure you're using the directory that contains your Azure AD B2C tenant:
    1. Select the Directories + subscriptions icon in the portal toolbar.
    2. On the Portal settings | Directories + subscriptions page, find your Azure AD B2C directory in the Directory name list, and then select Switch.
  3. In the Azure portal, search for and select Azure AD B2C
  4. Select Applications (Legacy), and then select Add.
  5. Enter a name for the application. For example, ROPC_Auth_app.
  6. For Native client, select Yes.
  7. Leave the other values as they are, and then select Create.
  8. Record the APPLICATION ID for use in a later step.