From a52f4988e198441b2d05fc2e77a90f413f2bd002 Mon Sep 17 00:00:00 2001 From: Adrien Abraham Date: Fri, 11 Aug 2023 16:31:48 +0000 Subject: [PATCH] Add example for Azure AD --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index d1323cc..7a87653 100644 --- a/README.md +++ b/README.md @@ -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//oauth2/v2.0/authorize` +- **Token URL**: `https://login.microsoftonline.com//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` \ No newline at end of file