initGroupAttributes

功能介绍

初始化群属性

初始化群属性,会清空原有的群属性列表

目前只支持 AVChatRoom

key 最多支持16个,长度限制为32字节

value 长度限制为4k

总的 attributes(包括 key 和 value)限制为16k

initGroupAttributes、setGroupAttributes、deleteGroupAttributes 接口合并计算, SDK 限制为5秒10次,超过后回调8511错误码;后台限制1秒5次,超过后返回10049错误码

参数详解

参数名称 参数类型 是否必填 平台 描述
groupID String 全部 需要初始化属性的群组id
attributes Map< String,String > 全部 初始化属性

返回模板

V2TimCallback

{
    code : int
    desc : String
}

返回值详解

名称 数值类型 描述
code int 请求结果错误码
desc String 请求结果描述符

代码示例

    // 注意:需要先调用joinGroup进入直播群才能进行设置
    // 初始化群属性
    V2TimCallback initGroupAttributesRes = await TencentImSDKPlugin.v2TIMManager
        .getGroupManager()
        .initGroupAttributes(
          groupID: "groupID",// 需要初始化属性的群组id
          attributes: {"custom":"custom"}// 初始化属性
          );
    if (initGroupAttributesRes.code == 0) {
      // 初始化成功
    }

results matching ""

    No results matching ""