Cloud.getVoIPSign(options: Object): Promise<Object>

支持端:云函数

获取实时语音签名

参数

options: Object

属性类型默认值必填说明
groupIdstring游戏房间的标识
noncestring随机字符串,长度应小于 128
timestampnumber生成这个随机字符串的 UNIX 时间戳(精确到秒)

返回值

Promise.<Object>

属性类型说明
signaturestring签名

示例代码

  1. const cloud = require('wx-server-sdk')
  2. cloud.init({
  3. env: cloud.DYNAMIC_CURRENT_ENV
  4. })
  5. exports.main = async (event, context) => {
  6. const result = await cloud.getVoIPSign({
  7. groupId: 'xxx',
  8. timestamp: 1557056066,
  9. nonce: 'yyy'
  10. })
  11. return result.fileListt
  12. }