From dc1ee33517d35b0034071093eea9fca1eeb072a9 Mon Sep 17 00:00:00 2001 From: curry772 Date: Wed, 8 Apr 2026 14:14:24 +0900 Subject: [PATCH] =?UTF-8?q?=EC=98=A4=EB=A5=98=20=EC=9D=91=EB=8B=B5=20?= =?UTF-8?q?=EC=8B=9C=20=ED=95=84=EB=93=9C=20=EC=9D=B4=EB=A6=84=20=EB=B3=80?= =?UTF-8?q?=EA=B2=BD(grantType=20->=20grant=5Ftype)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../eactive/eai/authserver/custom/DJErpOAuth2Controller.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/eactive/eai/authserver/custom/DJErpOAuth2Controller.java b/src/main/java/com/eactive/eai/authserver/custom/DJErpOAuth2Controller.java index 58cc58c..ced4531 100644 --- a/src/main/java/com/eactive/eai/authserver/custom/DJErpOAuth2Controller.java +++ b/src/main/java/com/eactive/eai/authserver/custom/DJErpOAuth2Controller.java @@ -112,7 +112,7 @@ public class DJErpOAuth2Controller { if (!StringUtils.equals(grantType, "client_credentials")) { throw new JwtAuthException( String.format("%d%s%s", HttpStatus.BAD_REQUEST.value(), SERVICE_CODE_ACCESS_TOKEN, "02"), - "Invalid Mandatory Field {grantType}"); + "Invalid Mandatory Field {grant_type}"); } String[] scopeArr = org.springframework.util.StringUtils.tokenizeToStringArray(scopes, " ");