你好,请问groupId只要是唯一的就可以吗,还有就是timeStamp时间戳怎么取呢
微信小程序调用wx.joinVoIPChat api一直显示签名错误问题?//index.js 验证文档上默认的参数返回签名一致,点击调用的时候一直出现 签名错误问题 //获取应用实例 const app = getApp() Page({ data: { motto: 'Hello World', userInfo: {}, hasUserInfo: false, canIUse: wx.canIUse('button.open-type.getUserInfo'), data:{} }, onLoad:function(){ var t = this wx.login({ complete: (res) => { if(res.code){ wx.request({ data:{code:res.code}, url: 'https://www.lefakeji.com/api/user/getwxuserinfo', success:(re)=>{ var data = re.data wx.checkSession({ complete: (res) => { console.log(res) }, }) console.log(re) t.setData({ data:data }) } }) } }, }) }, joinVoIPChat:function(){ var t = this wx.getSetting({ success:function(r){ if(r.authSetting['scope.record']){ var data = t.data.data console.log(data.sign) console.log(data.nonceStr) console.log(data.timeStamp) console.log(data.groupId) wx.joinVoIPChat({ signature:data.sign, nonceStr:data.nonceStr, timeStamp:parseInt(data.timeStamp), groupId:data.groupId, complete:(re)=>{ console.log(re) wx.showModal({ title: '提示', content: re.errMsg, success (res) { if (res.confirm) { console.log('用户点击确定') } else if (res.cancel) { console.log('用户点击取消') } } }) } }) }else{ wx.startRecord({ complete: (res) => { wx.stopRecord({ complete: (res) => {}, }) }, }) } } }) return wx.startRecord({ success: (res) => { }, fail:(re)=>{ console.log(re) } }) } })
2020-09-28同问哦,请问现在知道有哪些小程序接入了吗?
多人音视频对话 是否有官方demo演示一下效果?小程序官方8月4号就开始对这个多人视频对话进行内测,我们是做科技服务类的,对这块也非常感兴趣,请问是否有官方的demo可以提前看下这个产品的体验和效果呀 @小程序官方大佬们, 或者是否有市面上已有的小程序接入的案例也行,想看看这个效果 有其他大佬小伙伴有知道的也可以答复,跪求!!! [图片]
2020-09-08