ZEGO 提供多种文本消息的收发功能,实现发送房间内广播消息、弹幕消息、简单 IM 文字聊天、点赞、送礼物、答题等功能。
消息类型 | 功能描述 | 应用场景 | 发送频率限制 |
---|---|---|---|
广播消息 | 向同一房间内所有用户发送文本消息,默认支持最多前 500 个加入房间的用户能收到该消息。 | 一般当直播房间人数小于 500 时发送该类消息。可用于简单的房间内聊天室场景。 | 请参考 限制说明。 |
弹幕消息 | 观众在直播过程中可以发表自己的评论,并以滑动而过的字幕显示出来,增加了观众之间的互动性。 | 一般用于房间内有大量消息收发,且不需要保证消息可靠性的场景,例如直播弹幕。 | 请参考 限制说明。 |
自定义信令 | 向同一房间内单个或多个用户发送消息。 | 一般用于远程控制信令或简单的文字消息发送。比如在线娃娃机场景中,远程控制娃娃机夹子的移动。 | 请参考 限制说明。 |
另外,ZEGO 还提供完整的即时通讯 ZIM SDK,为开发者提供全平台互动、海量并发、超低延时、消息必达的通信服务,具体请参考 即时通讯。
相关源码请查看 “/pages/message” 目录下的文件。
在发送实时消息前,请确保:
已在项目中集成 ZEGO Express SDK,并实现了基本的音视频推拉流功能,详情请参考:
已在 ZEGO 控制台 创建项目,并申请有效的 AppID 和 Server 地址,详情请参考 控制台 - 项目信息。
发送广播消息
调用 sendBroadcastMessage 接口向同一房间内的其他用户发送广播消息,长度不能超过 1024 字节。
通过 ZegoServerResponse 中的 “errorCode” 获取消息发送结果,“0” 表示成功,非 “0” 表示失败。
try {
const isSent = await zg.sendBroadcastMessage(this.data.roomID, this.data.inputMessage)
console.log('>>> sendMsg success, ', isSent);
} catch (error) {
console.log('>>> sendMsg, error: ', error);
};
接收广播消息
房间内成员注册 IMRecvBroadcastMessage 回调,当发送方成功发送广播消息后,同一房间内的其他用户通过此回调接收相关信息,包括消息内容、消息 ID、发送时间及发送方信息。
zg.on('IMRecvBroadcastMessage', (roomID, chatData) => {
console.log('IMRecvBroadcastMessage', roomID, chatData);
let message = {
ID: 'zego' + chatData[0].fromUser.userID + chatData[0].sendTime,
name: chatData[0].fromUser.userName,
time: format(chatData[0].sendTime),
content: chatData[0].message + '(广播发送)'
}
});
发送弹幕消息
调用 sendBarrageMessage 接口向同一房间内的其他用户发送弹幕消息,长度不能超过 1024 字节。
通过 ZegoServerResponse 中的 “errorCode” 获取消息发送结果,“0” 表示成功,非 “0” 表示失败。
try {
const isSent = await zg.sendBarrageMessage(this.data.roomID, this.data.inputMessage)
console.log('>>> barrageMessage success, ', isSent);
} catch (error) {
console.log('>>> barrageMessage, error: ', error);
};
接收弹幕消息
房间内成员注册 IMRecvBarrageMessage 回调,当发送方成功发送弹幕消息后,同一房间内的其他用户通过此回调接收相关信息,包括消息内容、消息 ID、发送时间及发送方信息。
zg.on('IMRecvBarrageMessage', (roomID, chatData) => {
console.log('IMRecvBroadcastMessage', roomID, chatData);
let message = {
ID: 'zego' + chatData[0].fromUser.userID + chatData[0].sendTime,
name: chatData[0].fromUser.userName,
// @ts-ignore
time: format(chatData[0].sendTime),
content: chatData[0].message + '(弹幕发送)'
}
});
发送自定义信令
调用 sendCustomCommand 接口向同一房间内通过 “toUserIDList” 指定的用户发送自定义信令,长度不能超过 1024 字节。
通过 ZegoServerResponse 中的 “errorCode” 获取消息发送结果,“0” 表示成功,非 “0” 表示失败。
try {
const res = await zg.sendCustomCommand(this.data.roomID, this.data.inputMessage, toUserIDList);
console.warn('send custom success ' + res)
} catch(error) {
console.error(JSON.stringify(error))
}
接收自定义信令
房间内成员注册 IMRecvCustomCommand 回调,当发送方成功发送自定义信令后,同一房间内的指定用户通过此回调接收相关信息,包括消息内容和发送方信息。
zg.on('IMRecvCustomCommand', (roomID, fromUser, command) => {
console.log('IMRecvCustomCommand',roomID, fromUser, command);
let message = {
ID: fromUser.userID,
name: fromUser.userName,
time: format(new Date().getTime()),
content: command + '(自定义发送)'
}
});
联系我们
文档反馈