-
Notifications
You must be signed in to change notification settings - Fork 2
Creating your own app registration in the Azure Portal
Ole Martin Pettersen edited this page Mar 18, 2021
·
4 revisions
- Log on to portal.azure.com with your subscription
- Navigate to Azure Active Directory -> App registrations
- Create a New registration
- With multi tenant support.
- Note down the App id - this is your
MICROSOFT_CLIENT_ID
env variable
- Authentication
- Set the redirect URIs
- http://localhost:port/auth/azuread-openidconnec/callback for developing locally
- yourwebsite_.azurewebsites.net/auth/azuread-openidconnect/callback if you've created an enterprise app
- Enable Implicit grant flow using both
Access tokens
andID tokens
- Ensure Supported account types are set to
Multitenant
- Set the redirect URIs
- Certificates & secrets
- Create a new Client secret and note it down - this is your
MICROSOFT_CLIENT_SECRET
environment variables
- Create a new Client secret and note it down - this is your
- API permissions - all delegated
Calendars.Read
User.Read
offline_access
openid
- Exposed APIs
- Add a scope for
Calendar.Read
- Add a scope for