暂时 修改小程序码 生成测试版

This commit is contained in:
furongxin 2024-06-28 16:53:09 +08:00
parent d254b5a162
commit 028905b8ad
2 changed files with 3 additions and 2 deletions

View File

@ -52,7 +52,8 @@ public class SocialClientApiImpl implements SocialClientApi {
public CommonResult<File> getQRCode(String path, String scene) { public CommonResult<File> getQRCode(String path, String scene) {
WxMaService wxService = socialClientService.getWxMaService(); WxMaService wxService = socialClientService.getWxMaService();
File QRCode = wxService.getQrcodeService().createWxaCodeUnlimit(scene, path); // File QRCode = wxService.getQrcodeService().createWxaCodeUnlimit(scene, path);
File QRCode = wxService.getQrcodeService().createWxaCodeUnlimit(scene, path, false, "trial", 430, true, null, false);
return success(QRCode); return success(QRCode);
} }