From dca982327c935180ce4e11dc01c97b526598f0f9 Mon Sep 17 00:00:00 2001 From: Dusan Jakub Date: Mon, 25 Sep 2023 15:10:22 +0200 Subject: [PATCH] add clients --- src/main/java/com/ysoft/geecon/repo/ClientsRepo.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main/java/com/ysoft/geecon/repo/ClientsRepo.java b/src/main/java/com/ysoft/geecon/repo/ClientsRepo.java index 0cc9248..783d5fa 100644 --- a/src/main/java/com/ysoft/geecon/repo/ClientsRepo.java +++ b/src/main/java/com/ysoft/geecon/repo/ClientsRepo.java @@ -15,6 +15,9 @@ public class ClientsRepo { public ClientsRepo() { register(new OAuthClient("my-public-client", "Example public client", null, "https://localhost:8888/oauth_success")); register(new OAuthClient("oauthdebugger", "Example public client", null, "https://oauthdebugger.com/debug")); + + register(new OAuthClient("oauth-playground", "OAuth playground", null, "https://oauth-playground.online/flow/code-2")); + register(new OAuthClient("oauth-playground-localhost", "OAuth playground", null, "http://localhost:5555/flow/code-2")); } public Optional getClient(String clientId) {