🐛 小程序的条码/二维码识别的API请求方式改为post

This commit is contained in:
liufuguo
2021-12-01 17:57:37 +08:00
committed by GitHub
parent 5ac4e00133
commit 40ba792acc

View File

@ -35,7 +35,7 @@ public class WxMaImgProcServiceImpl implements WxImgProcService {
//ignore
}
final String result = this.service.get(String.format(QRCODE, imgUrl), null);
final String result = this.service.post(String.format(QRCODE, imgUrl), "");
return WxImgProcQrCodeResult.fromJson(result);
}