Skip to content

Commit

Permalink
Add example for Azure AD
Browse files Browse the repository at this point in the history
  • Loading branch information
dece committed Aug 11, 2023
1 parent 37e89f1 commit fddc864
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,3 +107,14 @@ Example for Slack:
- **Name Key**: `name`
- **Email Key**: `email`
- **User ID Key**: `sub`

Example for Azure AD (find the URLs with proper UUIDs in your Azure app page):

- **Authorize URL**: `https://login.microsoftonline.com/<UUID>/oauth2/v2.0/authorize`
- **Token URL**: `https://login.microsoftonline.com/<UUID>/oauth2/v2.0/token`
- **User API URL**: `https://graph.microsoft.com/beta/me`
- **Scopes**: `User.Read`
- **Username Key**: `userPrincipalName`
- **Name Key**: `displayName`
- **Email Key**: `mail`
- **User ID Key**: `id`

0 comments on commit fddc864

Please sign in to comment.