From 6c9dbc754c638f82c13274b46a7d22f6696fa163 Mon Sep 17 00:00:00 2001 From: Dusan Jakub Date: Wed, 27 Sep 2023 09:12:20 +0200 Subject: [PATCH] more allowed redirects --- src/main/java/com/ysoft/geecon/repo/ClientsRepo.java | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/ysoft/geecon/repo/ClientsRepo.java b/src/main/java/com/ysoft/geecon/repo/ClientsRepo.java index 7fc044e..cd04f64 100644 --- a/src/main/java/com/ysoft/geecon/repo/ClientsRepo.java +++ b/src/main/java/com/ysoft/geecon/repo/ClientsRepo.java @@ -20,9 +20,13 @@ public class ClientsRepo { List.of("https://oauthdebugger.com/debug"))); register(new OAuthClient("oauth-playground", "OAuth playground", null, - List.of("https://oauth-playground.online/flow/code-2", "https://oauth-playground.online/flow/pkce-3"))); + List.of("https://oauth-playground.online/flow/code-2", + "https://oauth-playground.online/flow/pkce-3", + "https://oauth-playground.online/flow/webauthn-2"))); register(new OAuthClient("oauth-playground-localhost", "OAuth playground", null, - List.of("http://localhost:5555/flow/code-2", "http://localhost:5555/flow/pkce-3"))); + List.of("http://localhost:5555/flow/code-2", + "http://localhost:5555/flow/pkce-3", + "http://localhost:5555/flow/webauthn-2"))); } public Optional getClient(String clientId) {