fix: OIDC grant 요청 시 redirect_uri 파라미터 추가

This commit is contained in:
2026-04-09 14:48:48 +09:00
parent 5fa8833aa8
commit 34bd0d0ecb

View File

@@ -91,7 +91,8 @@ app.post('/api/login', async (req, res) => {
grant_type: 'password',
username: loginId,
password: password,
scope: 'openid profile'
scope: 'openid profile',
redirect_uri: process.env.REDIRECT_URI // 추가
});
console.log(`[OIDC Step 2] TokenSet received successfully.`);