This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import base64 | |
| import requests | |
| from authentik.core.models import Group | |
| # To get the guild ID number for the parameters, open Discord, go to Settings > Advanced and enable developer mode. | |
| # Right-click on the server/guild title and select "Copy ID" to get the guild ID. | |
| # Set these values | |
| ALLOWED_GUILDS = "123456789101112" # Discord server id to fetch roles from | |
| AVATAR_SIZE = "64" # Valid avatar size values: 16,32,64,128,256,512,1024. | |
| # Larger values than 64 may cause HTTP error 431 on applications/providers |