OIDC 변수 하드코딩 제거

This commit is contained in:
Lectom C Han
2026-02-05 11:00:07 +09:00
parent 9460563869
commit 6537a65d74

View File

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