我成功地可以使用我的QuickBlox Chat SDK的JS实现发送和接收消息。但是我无法向任何消息添加自定义数据。
QB.chat.send(opponentId, {
type: 'chat',
custom: 'doesnt_work',
body: currentMessage,
extension: {
save_to_history: 1,
}
});
由于这是1-1聊天,我没有创建对话框。在第一条消息发送后自动创建对话框。
文件告诉我这应该有效
答案 0 :(得分:0)
自己找到答案。也许这对某些人有用。格式正确:
QB.chat.send(opponentId, {
type: 'chat',
body: currentMessage,
extension: {
save_to_history: 1,
custom: 'it works'
}
});