Skip to content

Commit

Permalink
Add example for Authentik
Browse files Browse the repository at this point in the history
  • Loading branch information
wichmann authored Oct 16, 2024
1 parent 93ae46c commit 86b92c7
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`
- **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`

0 comments on commit 86b92c7

Please sign in to comment.