providers/oauth2: add grant_types_supported to discovery endpoint

This commit is contained in:
Jens Langhammer 2020-12-27 14:17:40 +01:00
parent 5b18e28753
commit 885fcff495
1 changed files with 6 additions and 1 deletions

View File

@ -8,7 +8,7 @@ from structlog import get_logger
from authentik.core.models import Application
from authentik.providers.oauth2.constants import ACR_AUTHENTIK_DEFAULT, SCOPE_OPENID
from authentik.providers.oauth2.models import OAuth2Provider, ScopeMapping
from authentik.providers.oauth2.models import GrantTypes, OAuth2Provider, ScopeMapping
LOGGER = get_logger()
@ -55,6 +55,11 @@ class ProviderInfoView(View):
kwargs={"application_slug": provider.application.slug},
)
),
"grant_types_supported": [
GrantTypes.AUTHORIZATION_CODE,
GrantTypes.IMPLICIT,
GrantTypes.HYBRID,
],
"id_token_signing_alg_values_supported": [provider.jwt_alg],
# See: http://openid.net/specs/openid-connect-core-1_0.html#SubjectIDTypes
"subject_types_supported": ["public"],