| | |
| | | String url = null; |
| | | if (type == null) { |
| | | // 该接口无数量限制,但是 scene 传参最大字符长度为32个字符 |
| | | url = StrFormatter.format("https://api.weixin.qq.com/wxa/getwxacodeunlimit?access_token={}",redisUtils.get(WechatConfigure.WX_ACCESS_TOKEN_REDIS_KEY).toString()); |
| | | url = StrUtil.format("https://api.weixin.qq.com/wxa/getwxacodeunlimit?access_token={}",redisUtils.get(WechatConfigure.WX_ACCESS_TOKEN_REDIS_KEY).toString()); |
| | | obj.set("scene", scene); |
| | | obj.set("page", path); |
| | | } else { |
| | | // 该接口存在数量限制, 总共可生成10w个, 但参数是接在path后面 |
| | | url = StrFormatter.format("https://api.weixin.qq.com/wxa/getwxacode?access_token={}", redisUtils.get(WechatConfigure.WX_ACCESS_TOKEN_REDIS_KEY).toString()); |
| | | url = StrUtil.format("https://api.weixin.qq.com/wxa/getwxacode?access_token={}", redisUtils.get(WechatConfigure.WX_ACCESS_TOKEN_REDIS_KEY).toString()); |
| | | obj.set("page", path + "?" + scene ); |
| | | } |
| | | |