From 34bd0d0ecbb024c6cfca2bdd847f362e9dc64148 Mon Sep 17 00:00:00 2001 From: kyy Date: Thu, 9 Apr 2026 14:48:48 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20OIDC=20grant=20=EC=9A=94=EC=B2=AD=20?= =?UTF-8?q?=EC=8B=9C=20redirect=5Furi=20=ED=8C=8C=EB=9D=BC=EB=AF=B8?= =?UTF-8?q?=ED=84=B0=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- server.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/server.js b/server.js index 3826310..13c7c04 100644 --- a/server.js +++ b/server.js @@ -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.`);