禁止或取消群聊(Chat.groupChatSwitch)

 // 开播后调用
 hst.Chat.groupChatSwitch(false).then((res) => {
    console.log('禁止群聊成功')
    console.log(res)
  }).catch(() => {
    console.log('禁止群聊失败')
  })
  • 参数说明 Boolean
     true // 取消禁止群聊
     false // 禁止群聊
    

禁止或取消私聊(Chat.privateChatSwitch)

// 开播后调用
 hst.Chat.privateChatSwitch(false).then((res) => {
    console.log('禁止私聊成功')
    console.log(res)
  }).catch(() => {
    console.log('禁止私聊失败')
  })
  • 参数说明 Boolean
   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('关播失败')
  })

results matching ""

    No results matching ""