用于实现小程序内多人音视频对话的功能。
在云开发中,无法获取 session_key
,但提供了单独的函数 cloud.getVoIPSign 来计算签名。
const cloud = require('wx-server-sdk')
cloud.init()
exports.main = async (event, context) => {
const signature = cloud.getVoIPSign({
groupId: 'xxx',
timestamp: 123,
nonce: 'yyy'
})
return signature
}