Adding an application to AAD with Azure portal - KundanaP/EDU-SSO GitHub Wiki
- Sign into the Azure Portal: https://portal.azure.com/ using the admin account of the EDU Tenant.
- Click Azure Active Directory -> App registrations -> Add
- Follow the prompts and create a new application.
For Web Applications, provide the Sign-On URL, which is the base URL of your app, where users can sign in e.g https://localhost:44300. For Native Applications, provide a Redirect URI, which Azure AD uses to return token responses. Enter a value specific to your application, .e.g http://MyFirstAADApp
- Once completed, the app registration appears in the list. !CompleteAppRegistration
- Click All settings
- Modify properties as needed:
- The Properties page lets you modify the general information for the application. This includes the application name, the sign-on URL, and the logout URL.
- The Reply URLs page allows you to add a reply URL, which is where Azure AD sends token responses.
- The Owners page allows you to add application owners.
- The Permissions page allows you to configure permissions for the app. For example, to access the MS Graph API, click Add and select Microsoft Graph in the API selector, then choose the permission required, for example Read Directory Data. -The Keys page allows you to add application secrets. The secret will only be displayed once immediately after creation, so make sure to copy it for further use.