如题,请问为什么new Realtime 时接口返回groupId : "deprecated",这是为什么呢?
const realtimeInstance = new Realtime({
appId: 'xxxx',
appKey: 'xxxx',
server: 'xxxxx',
});
// 测试连接
realtimeInstance.createIMClient('Tom').then(function(tom) {
console.log('成功登录',tom)
tom
.createConversation({
// tom 是一个 IMClient 实例
// 指定对话的成员除了当前用户 Tom(SDK 会默认把当前用户当做对话成员)之外,还有 Jerry
members: ["Jerry"],
// 对话名称
name: "Tom & Jerry",
unique: true,
})
.then(function({id}){
console.log(id)
tom
.getConversation(id)
.then(function (conversation) {
// 邀请 Mary 加入对话
return conversation.add(["Mary"]);
})
.then(function (conversation) {
console.log("添加成功", conversation.members);
// 此时对话成员为:['Mary', 'Tom', 'Jerry']
})
.catch(console.error.bind(console));
});
}).catch(console.error);