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

This commit is contained in:
liufuguo 2021-12-01 17:57:37 +08:00 committed by GitHub
parent 5ac4e00133
commit 40ba792acc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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);
}