From 86b92c766cfa15877f288801c5c6ef09ccb554ed Mon Sep 17 00:00:00 2001 From: Christian Wichmann Date: Wed, 16 Oct 2024 19:33:55 +0200 Subject: [PATCH] Add example for Authentik --- README.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 7a87653..df57ffe 100644 --- a/README.md +++ b/README.md @@ -117,4 +117,15 @@ Example for Azure AD (find the URLs with proper UUIDs in your Azure app page): - **Username Key**: `userPrincipalName` - **Name Key**: `displayName` - **Email Key**: `mail` -- **User ID Key**: `id` \ No newline at end of file +- **User ID Key**: `id` + +Example for self-hosted Authentik: + +- **Authorize URL**: `https://auth.domain.tld/application/o/authorize/` +- **Token URL**: `https://auth.domain.tld/application/o/token/` +- **User API URL**: `https://auth.domain.tld/application/o/userinfo/` +- **Scopes**: `openid profile email` +- **Username Key**: `preferred_username` +- **Name Key**: `name` +- **Email Key**: `email` +- **User ID Key**: `sub`