test 수정

This commit is contained in:
25W0075
2025-12-17 13:34:48 +09:00
parent 14b70a5add
commit 908d314576
@@ -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();