From 51e5f576767377c394c1fb7c7e5d33d25c2b2c7e Mon Sep 17 00:00:00 2001 From: Sim-km Date: Sat, 3 May 2025 16:56:32 +0900 Subject: [PATCH] =?UTF-8?q?ASAP-000=20"Google=20OAuth=20Base=20URL=20?= =?UTF-8?q?=EC=88=98=EC=A0=95:=20'https://oauth2.googleapis.com'=20?= =?UTF-8?q?=E2=86=92=20'https://www.googleapis.com'"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../main/kotlin/com/asap/client/oauth/OAuthWebClientConfig.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Infrastructure-Module/Client/src/main/kotlin/com/asap/client/oauth/OAuthWebClientConfig.kt b/Infrastructure-Module/Client/src/main/kotlin/com/asap/client/oauth/OAuthWebClientConfig.kt index 89bddf2..980cfd3 100644 --- a/Infrastructure-Module/Client/src/main/kotlin/com/asap/client/oauth/OAuthWebClientConfig.kt +++ b/Infrastructure-Module/Client/src/main/kotlin/com/asap/client/oauth/OAuthWebClientConfig.kt @@ -22,7 +22,7 @@ class OAuthWebClientConfig { fun googleWebClient(): WebClient = WebClient .builder() - .baseUrl("https://oauth2.googleapis.com") + .baseUrl("https://www.googleapis.com") .defaultHeader("Content-Type", MediaType.APPLICATION_JSON_VALUE) .build()