Skip to content

Latest commit

 

History

History
45 lines (41 loc) · 2.53 KB

active-directory-b2c-appreg-ropc.md

File metadata and controls

45 lines (41 loc) · 2.53 KB
author ms.service ms.subservice ms.topic ms.date ms.author
kengaderdus
active-directory-b2c
B2C
include
10/08/2021
kengaderdus

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:
    "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.