mod_http_oauth2/mod_http_oauth2.lua
changeset 5402 38da5ca498dd
parent 5401 18b57e91b5e5
child 5403 89c9e9bba60d
--- a/mod_http_oauth2/mod_http_oauth2.lua	Tue May 02 15:41:36 2023 +0200
+++ b/mod_http_oauth2/mod_http_oauth2.lua	Tue May 02 16:07:09 2023 +0200
@@ -956,6 +956,13 @@
 				revocation_endpoint = handle_revocation_request and module:http_url() .. "/revoke" or nil;
 				revocation_endpoint_auth_methods_supported = array({ "client_secret_basic" });
 				code_challenge_methods_supported = array(it.keys(verifier_transforms));
+				grant_types_supported = array(it.keys(response_type_handlers)):map(function(h)
+					if h == "token" then
+						return "implicit"
+					elseif h == "code" then
+						return "authorization_code"
+					end
+				end);
 				authorization_response_iss_parameter_supported = true;
 
 				-- OpenID