功能介绍
创建话题
4.0.1及以上版本支持
社群(Community)功能仅 SDK 4.0.1 及以上版本支持,需 购买旗舰版套餐包 并在 控制台 >功能配置>群组配置>群功能配置>社群中开通。
参数详解
参数名称 |
参数类型 |
是否必填 |
平台 |
描述 |
groupID |
String |
是 |
全部 |
需要创建话题的群组id |
topicInfo |
V2TimTopicInfo |
是 |
全部 |
创建话题的设置 |
返回模板
V2TimValueCallback<String>
{
code : int
desc : String
data : String
}
返回值详解
名称 |
数值类型 |
描述 |
code |
int |
请求结果错误码 |
desc |
String |
请求结果描述符 |
data |
String |
被创建话题的id |
代码示例
V2TimTopicInfo topicInfo = V2TimTopicInfo(
customString: "",
draftText: "",
groupAtInfoList: [],
introduction: "",
isAllMute: false,
lastMessage: null,
notification: "",
selfMuteTime: 0,
topicFaceUrl: "",
topicID: "",
topicName: "",
unreadCount: 0,
);
V2TimValueCallback<String> createTopicInCommunityRes =
await TencentImSDKPlugin.v2TIMManager
.getGroupManager()
.createTopicInCommunity(
groupID: "groupID",
topicInfo: topicInfo,
);
if (createTopicInCommunityRes.code == 0) {
String? topicId = createTopicInCommunityRes.data;
}