2.获取在线用户列表(User.getUserList)
hst.User.getUserList({
curPage: 1
}).then((res) => {
console.log(res)
})
参数 |
参数说明 |
类型 |
必填 |
默认值 |
nickname |
按昵称搜索 |
string |
否 |
无 |
curPage |
当前的页码 |
int |
否 |
1 |
pageSize |
每页显示条数 |
int |
否 |
500 |
{
result: 0,
total: xx,
curPage: xx,
pageSize: xx,
userList: xx
}
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('禁言失败')
})
参数名 |
参数说明 |
userId |
用户Id |
status |
true(取消禁言),false(禁言) |