INCORRECT_BASIC_AUTH_FORMAT 리턴 문의
API 방식으로 카드 승인 요청 시
code: INCORRECT_BASIC_AUTH_FORMAT
message: 잘못된 요청입니다. ':' 를 포함해 인코딩해주세요.
이렇게 리턴되는데 무슨값 때문에 그런건가요?
JSONObject paramJson = new JSONObject();
paramJson.put("orderId", "ORDER20250305180433");
paramJson.put("amount", "10000");
outputStream.write(paramJson.toString().getBytes(StandardCharsets.UTF_8));
code: INCORRECT_BASIC_AUTH_FORMAT
message: 잘못된 요청입니다. ':' 를 포함해 인코딩해주세요.
이렇게 리턴되는데 무슨값 때문에 그런건가요?
JSONObject paramJson = new JSONObject();
paramJson.put("orderId", "ORDER20250305180433");
paramJson.put("amount", "10000");
outputStream.write(paramJson.toString().getBytes(StandardCharsets.UTF_8));
