more allowed redirects

This commit is contained in:
Dusan Jakub
2023-09-27 09:12:20 +02:00
parent fc0af19981
commit 6c9dbc754c

View File

@@ -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<OAuthClient> getClient(String clientId) {