2.获取在线用户列表(User.getUserList)

  // 开播后调用
   hst.User.getUserList({
    curPage: 1
  }).then((res) => {
    console.log(res)
  })
  • 参数格式 Object
参数 参数说明 类型 必填 默认值
nickname 按昵称搜索 string
curPage 当前的页码 int 1
pageSize 每页显示条数 int 500
  • 消息返回格式 Object
 {
   result: 0, // 0表示请求成功
   total: xx,
   curPage: xx,
   pageSize: xx,
   userList: xx // 用户列表 array
 }

2 踢出用户(User.kickOut)

 // 开播后调用
  hst.User.kickOut({
    userId: xxxx
  }).then((res) => {
    console.log('踢出用户成功')
  }).catch(() => {
    console.log('踢出失败')
  })

3.禁言用户(User.banned)

  // 开播后调用
   hst.User.banned({
    userId: 1354765282,
    status: false
  }).then((res) => {
    console.log('禁言成功')
  }).catch(() => {
    console.log('禁言失败')
  })
  • 参数格式 Object
参数名 参数说明
userId 用户Id
status true(取消禁言),false(禁言)

results matching ""

    No results matching ""