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, ];