From 908d314576da15159f740c17d4c117ae14c3f41d Mon Sep 17 00:00:00 2001 From: 25W0075 <25W0075@P9801Z.kjbank.dom> Date: Wed, 17 Dec 2025 13:34:48 +0900 Subject: [PATCH] =?UTF-8?q?test=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../impl/HttpClientAccessTokenServiceWithBase64NiceOn.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/eactive/eai/authoutbound/client/impl/HttpClientAccessTokenServiceWithBase64NiceOn.java b/src/main/java/com/eactive/eai/authoutbound/client/impl/HttpClientAccessTokenServiceWithBase64NiceOn.java index e694f6f..8c4a102 100644 --- a/src/main/java/com/eactive/eai/authoutbound/client/impl/HttpClientAccessTokenServiceWithBase64NiceOn.java +++ b/src/main/java/com/eactive/eai/authoutbound/client/impl/HttpClientAccessTokenServiceWithBase64NiceOn.java @@ -201,7 +201,7 @@ public class HttpClientAccessTokenServiceWithBase64NiceOn implements HttpClientA HttpPost httpPost = new HttpPost(uri); //httpPost.setEntity(new UrlEncodedFormEntity(formParams, charset)); httpPost.setEntity(new StringEntity(postParameters, StandardCharsets.UTF_8)); - httpPost.setHeader("Content-Type", contentType+" charset=" + encode); + httpPost.setHeader("Content-Type", contentType+";charset=" + encode); //HTTP HEADER에 client id, client secret를 base64Encode 한 후 추가 String cId = oAuthCredentialVo.getClientId();