From 6e3fac77f1f816b224e87a8498f267fe763b3117 Mon Sep 17 00:00:00 2001 From: Ivan Reshetnikov Date: Thu, 17 Oct 2024 15:19:45 +0500 Subject: [PATCH] Specify supported open id subject types --- lib/comfycamp_web/controllers/oauth_json.ex | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/comfycamp_web/controllers/oauth_json.ex b/lib/comfycamp_web/controllers/oauth_json.ex index 722da83..ba24278 100644 --- a/lib/comfycamp_web/controllers/oauth_json.ex +++ b/lib/comfycamp_web/controllers/oauth_json.ex @@ -15,6 +15,7 @@ defmodule ComfycampWeb.OauthJSON do token_endpoint: "https://comfycamp.space/oauth/token", userinfo_endpoint: "https://comfycamp.space/oauth/userinfo", jwks_uri: "https://comfycamp.space/.well-known/jwks.json", + subject_types_supported: ["public"], response_types_supported: ["code"], id_token_signing_alg_values_supported: ["HS256"], scopes_supported: ["openid", "profile", "email"],