setTopicInfo
功能介绍
设置话题属性
社群(Community)功能需 购买旗舰版套餐包 并在 控制台 >功能配置>群组配置>群功能配置>社群中开通。
参数详解
参数名称 |
参数类型 |
是否必填 |
描述 |
topicInfo |
V2TimTopicInfo |
是 |
需要修改的话题的设置 |
groupID |
string |
是 |
话题所在的群组id |
返回模板
V2TimCallback
{
code : number
desc : string
}
返回值详解
名称 |
数值类型 |
描述 |
code |
number |
请求结果错误码 |
desc |
string |
请求结果描述符 |
代码示例
import { TencentImSDKPlugin, V2TimTopicInfo } from 'react-native-tim-js';
const topicInfo: V2TimTopicInfo = {
customString: '',
draftText: '',
groupAtInfoList: [],
introduction: '',
isAllMute: false,
lastMessage: undefined,
notification: '',
selfMuteTime: 0,
topicFaceUrl: '',
topicID: '',
topicName: '',
unreadCount: 0,
};
const setTopicInfoRes = await TencentImSDKPlugin.v2TIMManager
.getGroupManager()
.setTopicInfo(
'groupID',
topicInfo
);
if (setTopicInfoRes.code === 0) {
}