|
@@ -243,6 +243,7 @@ public class TencentWeComController {
|
|
|
File file = new File(filePath);
|
|
|
// 将MultipartFile的内容传输到File中
|
|
|
multipartFile.transferTo(file);
|
|
|
+ log.info("sendPostFile file size={}", file.length());
|
|
|
byte[] decodedBytes = Base64.getDecoder().decode(url);
|
|
|
String originalString = new String(decodedBytes);
|
|
|
log.info("sendPostFile url={}", originalString);
|