|
|
@@ -192,7 +192,7 @@ public class HttpClientUtil {
|
|
|
|
|
|
// 3. 发送请求
|
|
|
try (OutputStream os = connection.getOutputStream()) {
|
|
|
- byte[] input = requestBody.getBytes(StandardCharsets.UTF_8);
|
|
|
+ byte[] input = encryptedRequest.getBytes(StandardCharsets.UTF_8);
|
|
|
os.write(input, 0, input.length);
|
|
|
}
|
|
|
|