- 微信小程序可以放微信小店的优惠券吗?
现在小店首页、商品都有了,优惠券开不开放组件或者接口放入小程序里啊
09-30 - 小程序订阅消息没设置,但是提示无法使用模板?
你好,小程序订阅消息没设置,但是提示无法使用该模板,你已经使用了50个一次性订阅模板,到达上限是怎么回事? 小程序APPID:wxdc80cd3a96161200 [图片][图片]
2022-05-12 - wx.getGroupEnterInfo回调返回值解密失败怎么回事?
wx.getGroupEnterInfo({ success(res) { // res { errMsg: 'getGroupEnterInfo:ok', encryptedData: '/tInBsHaMTxSCYjsUMRXgFNYoN685619p2ntdZkI6pE6qTSxvtwWLk7FWdM6GFyo', iv: '+/ERJ2oIAoeo2pqyfM23Lw==' } }, fail() { } })
2021-07-09 - getGroupEnterInfo和getShareInfo获取群opengid解密方式有不一样吗?
getGroupEnterInfo接口和getShareInfo接口获取群opengid的解密方式有不一样的地方吗?比较接口https://developers.weixin.qq.com/miniprogram/dev/api/open-api/group/wx.getGroupEnterInfo.html#Tips和https://developers.weixin.qq.com/miniprogram/dev/api/share/wx.getShareInfo.html#%E7%A4%BA%E4%BE%8B%E4%BB%A3%E7%A0%81没发现不一样的地方;但是getGroupEnterInfo和getShareInfo获取到的encryptedData长短不一样,不知道是不是造成的解密失败的原因!!y官方能解答一下吗??
2021-07-09 - wx.getGroupEnterInfo解密的时候老是返回41003,换其他接口都能解密成功?
https://developers.weixin.qq.com/miniprogram/dev/api/open-api/group/wx.getGroupEnterInfo.html 调用方法,wx.login({ provider:'weixin', success:function(loginres){ console.log(loginres.code) wx.getGroupEnterInfo({ success(res){ console.log(res) that.encryptedData =res.encryptedData that.iv = res.iv if(res.errMsg==="getGroupEnterInfo:fail invalid shareTicket"){ that.show3= true }else{ uni.request({ url:that.sercUrl+ '&r=group.join', method:'POST', data:{ uid:that.uid, gid:that.gid, iv:that.iv, encryptedData:that.encryptedData, code:loginres.code, latitude:that.latitude, longitude:that.longitude, }, header: { 'content-type': 'application/x-www-form-urlencoded' }, success:function(e){}}
2021-07-09