QQ小游戏 微信小游戏 即时通信 IM 获取会话列表 getConversationList sdk

QQ小游戏 微信小游戏 即时通信 IM 获取会话列表 getConversationList sdk

sdk下载地址


下面是调用方法:

public getConversationList(): void {
	if (!this.tim) {
		Log.showWarn("TIMSdkMgr - getConversationList - tim不存在", this.tim);
		return;
	}
	let promise = this.tim.getConversationList();
    if(!promise) {
		Log.showWarn("TIMSdkMgr - getConversationList - promise不存在", promise);
		return;
	}
	promise.then(function (imResponse) {
		Log.showLog("TIMSdkMgr - getConversationList - 获取", conversationList);
	}).catch(function (imError) {
		Log.showWarn('TIMSdkMgr - getConversationList error:', imError); // 获取会话列表失败的相关信息
	});
}

其他API:
QQ小游戏 微信小游戏 即时通信 IM 初始化create sdk
QQ小游戏 微信小游戏 即时通信 IM 登录login sdk
QQ小游戏 微信小游戏 即时通信 IM 获取会话列表 getConversationList sdk
QQ小游戏 微信小游戏 即时通信 IM 删除会话 deleteConversation sdk
QQ小游戏 微信小游戏 即时通信 IM 发送文本消息 createTextMessage sendMessage sdk


维尼聚合工具


猜你喜欢

转载自blog.csdn.net/S_clifftop/article/details/107333355