- wx.join1v1Chat发起通话后,接听方怎么能监听到有语音过来?
假如别人使用wx.join1v1Chat发起通话后,我是接听方,那么我这边怎么能监听到有通过过来,怎么监听我接通还是挂断?
01-03 - wx.join1v1Chat接收者那边语音提示怎么监听,接受者的操作怎么监听?
wx.join1v1Chat({ //拨打 caller: { nickname: wxLoginInfo.nickname, openid: wxLoginInfo.openid, }, // 接听 listener: { nickname: '9898', openid: 'o-euQ5WvGvvf0a_GNDTwHru3Edfo', }, // 语音 roomType: "voice", success: (res) => { wx.hideLoading() console.log(res); }, fail: (err) => { console.log(err); wx.hideLoading() wx.showToast({ title: '拨打失败', icon: 'error', duration: 2000 }) }, })
01-02 - wx.makeBluetoothPair()配对一直报10012,超时?
如果wx.makeBluetoothPair()调用成功了还需要调用wx.createBLEConnection()吗?或者说是先调用wx.createBLEConnection()再调用wx.makeBluetoothPair()?希望能提供一个demo看一下
2023-11-02