[图片] wx.setEnable1v1Chat的enable设置为true了,对方收不到 appid:wxb80ba3190eeb8909
使用官方提供一对一音视频通话api发起通话对方无法收到<template> <view class="container"> <input placeholder="请输入类型" v-model="inputType" /> <button class="mt20" style="padding: 20rpx 0rpx;" @click="openChat">确定</button> <button class="mt20 " style="padding: 20rpx 0rpx;" v-if="inputType === '1' || inputType === '2'" @click="toChat('video')">视频会话</button> <button class="mt20" style="padding: 20rpx 0rpx;" v-if="inputType === '1' || inputType === '2'" @click="toChat('voice')">语音会话</button> tips:1是患者端发起。2是医生端发起 </view> </template> <script> export default { data() { return { inputType: '', } }, methods: { toChat(type) { if (this.inputType === '1') { wx.join1v1Chat({ caller: { nickname: '高乐', openid: 'oHowN5o0E5hQofZqwsnV9t_3UiJk' }, listener: { nickname: '张6', openid: 'ohpu74r2z831zNKLq682YoBXAeFg' }, roomType: type, success: res1 => { console.log(res1) }, fail: e1 => { console.log(e1) uni.showToast({ title: '开启会话失败', icon: 'none' }) } }) } else if (this.inputType === '2') { wx.join1v1Chat({ caller: { nickname: '张6', openid: 'ohpu74r2z831zNKLq682YoBXAeFg' }, listener: { nickname: '高乐', openid: 'oHowN5o0E5hQofZqwsnV9t_3UiJk' }, roomType: type, success: res1 => { console.log(res1) }, fail: e1 => { console.log(e1) uni.showToast({ title: '开启会话失败', icon: 'none' }) } }) } }, openChat() { if (!this.inputType) { return uni.showToast({ title: '先输入类型1或者2', icon: 'none' }) } wx.setEnable1v1Chat({ enable: true, success: res => { uni.showToast({ title: '支持音视频', duration: 2000 }) }, fail: e => { console.log(e) uni.showToast({ title: `${JSON.stringify(e.errMsg)},错误码:${e.errCode}`, icon: 'none', duration: 2500 }) } }) } } } </script>
2023-05-12同问?有官方技术大佬回复一下吗?
wx.join1v1Chat可以在同一主体下的两个小程序使用么?背景:在同一主体下有两个小程序 ”用户端“ 和 ”客服端“,想要实现功能 在用户端发起音视频请求,在商家端可以接收到
2023-05-11微信开发者工具运行正常,安卓/IOS手机用涂鸦的时候非常卡,求解决
小程序里面的canvas组件使用一会儿之后卡顿的原因是什么, 怎么解决小程序里面的canvas组件画一会儿之后就会很卡,性能会下降很多,不知道主要原因是什么,该怎么进行优化,请教一下各位大佬以及官方人员~
2020-03-18