Skip to content

Latest commit

 

History

History
27 lines (15 loc) · 1.89 KB

03-register-app.md

File metadata and controls

27 lines (15 loc) · 1.89 KB

Register the app in the portal

In this exercise you will create a new Azure AD application using the Azure Active Directory admin center.

  1. Open a browser and navigate to the Azure Active Directory admin center and login using a personal account (aka: Microsoft Account) or Work or School Account.

  2. Select Azure Active Directory in the left-hand navigation, then select App registrations under Manage.

    A screenshot of the App registrations

  3. Select New registration. On the Register an application page, set the values as follows.

    • Set Name to .NET Core Graph Tutorial.
    • Set Supported account types to Accounts in any organizational directory and personal Microsoft accounts.
    • Under Redirect URI, change the dropdown to Public client (mobile & desktop), and set the value to https://login.microsoftonline.com/common/oauth2/nativeclient.

    A screenshot of the Register an application page

  4. Select Register. On the .NET Core Graph Tutorial page, copy the value of the Application (client) ID and save it, you will need it in the next step.

    A screenshot of the application ID of the new app registration

  5. Select Authentication under Manage. Locate the Advanced settings section and change the Allow public client flows toggle to Yes, then choose Save.

    A screenshot of the Allow public client flows toggle

Next step