🐛 #3692【小程序】【公众号】修复图片智能裁剪接口请求类型错误的问题

Co-authored-by: dengfeng <dengfeng@huaxincem.com>
This commit is contained in:
dengfengfeng
2025-09-04 09:19:20 +08:00
committed by GitHub
parent 8447caa75f
commit 118839a49d
3 changed files with 5 additions and 5 deletions

View File

@ -82,7 +82,7 @@ public class WxMaImgProcServiceImpl implements WxImgProcService {
ratios = "";
}
final String result = this.service.get(String.format(AI_CROP, imgUrl, ratios), null);
final String result = this.service.post(String.format(AI_CROP, imgUrl, ratios), "");
return WxImgProcAiCropResult.fromJson(result);
}