禁止或取消群聊(Chat.groupChatSwitch)
hst.Chat.groupChatSwitch(false).then((res) => {
console.log('禁止群聊成功')
console.log(res)
}).catch(() => {
console.log('禁止群聊失败')
})
禁止或取消私聊(Chat.privateChatSwitch)
hst.Chat.privateChatSwitch(false).then((res) => {
console.log('禁止私聊成功')
console.log(res)
}).catch(() => {
console.log('禁止私聊失败')
})
true
false
删除聊天消息(Chat.deleteMessage)
hst.Chat.deleteMessage('135017358308806656').then((res) => {
console.log('删除聊天成功')
}).catch(() => {
console.log('删除聊天失败')
})
获取消息的messageId
获取历史聊天记录
hst.Chat.getRecordMessage({
liveNo: '157846714144022332491'
}).then((res) => {
console.log(res)
})
- 参数说明
liveNo
清空聊天记录(Chat.clearAll)
hst.Chat.clearAll().then((res) => {
console.log('清除成功')
}).catch(() => {
console.log('关播失败')
})