From 64f3db386406e6de378da0b36cd1725daa06c200 Mon Sep 17 00:00:00 2001 From: Philippe Loctaux Date: Thu, 16 Mar 2023 22:29:32 +0100 Subject: [PATCH] openid: response types: remove support of implicit flow for the moment --- crates/openid/src/response_types.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/openid/src/response_types.rs b/crates/openid/src/response_types.rs index e2b22c1..9d52aee 100644 --- a/crates/openid/src/response_types.rs +++ b/crates/openid/src/response_types.rs @@ -6,7 +6,7 @@ pub fn supported_response_types() -> Vec> { // Recommended: support the code flow. ResponseTypes::new(vec![CoreResponseType::Code]), // Optional: support the implicit flow. - ResponseTypes::new(vec![CoreResponseType::Token, CoreResponseType::IdToken]), // Other flows including hybrid flows may also be specified here. + // ResponseTypes::new(vec![CoreResponseType::Token, CoreResponseType::IdToken]), // Other flows including hybrid flows may also be specified here. ] }