OIDC 변수 하드코딩 제거
This commit is contained in:
@@ -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,
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user