From 6537a65d7409a5a4ffca6fadfc741992fc335116 Mon Sep 17 00:00:00 2001 From: Lectom C Han Date: Thu, 5 Feb 2026 11:00:07 +0900 Subject: [PATCH] =?UTF-8?q?OIDC=20=EB=B3=80=EC=88=98=20=ED=95=98=EB=93=9C?= =?UTF-8?q?=EC=BD=94=EB=94=A9=20=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- kngil/bbs/oidc_config.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/kngil/bbs/oidc_config.php b/kngil/bbs/oidc_config.php index 9224a11..d693f3d 100644 --- a/kngil/bbs/oidc_config.php +++ b/kngil/bbs/oidc_config.php @@ -14,9 +14,9 @@ if ($scopesRaw !== false && $scopesRaw !== '') { } return [ - 'issuer' => 'https://api.descope.com/v1/apps/P2x26KgEwOu0xIwgNZutJjIZc1zz', // 예: https://idp.example.com/auth/realms/master - 'client_id' => 'UDJ4MjZLZ0V3T3UweEl3Z05adXRKaklaYzF6ejpUUEEzOTVtSmx5MXhiczFwZWxrUHdDVFlvU2hiYXc=', - 'client_secret' => 'uTjiKweHYUINalroA1LVu9OacbEEMPtPbfFITfHu3r5', - 'redirect_url' => "https://kngil.hmac.kr/kngil/auth/oidc-callback.php", - 'scopes' => ['openid'], + 'issuer' => $issuer, // 예: https://idp.example.com/auth/realms/master + 'client_id' => $clientId, + 'client_secret' => $clientSecret, + 'redirect_url' => $redirectUrl, + 'scopes' => $scopes, ];