功能介绍
创建话题
社群(Community)功能需 购买旗舰版套餐包 并在 控制台 >功能配置>群组配置>群功能配置>社群中开通。
参数详解
参数名称 |
参数类型 |
是否必填 |
描述 |
groupID |
string |
是 |
需要创建话题的群组id |
topicInfo |
V2TimTopicInfo |
是 |
创建话题的设置 |
返回模板
V2TimValueCallback<string>
{
code : number
desc : string
data : string
}
返回值详解
名称 |
数值类型 |
描述 |
code |
number |
请求结果错误码 |
desc |
string |
请求结果描述符 |
data |
string |
被创建话题的id |
代码示例
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 createTopicInCommunityRes = await TencentImSDKPlugin.v2TIMManager
.getGroupManager()
.createTopicInCommunity(
'groupID',
topicInfo
);
if (createTopicInCommunityRes.code === 0) {
createTopicInCommunityRes.data;
}