deleteGroupAttributes

功能介绍

删除指定群属性

如果 keys 字段填 null ,则会清空所有的群属性。

目前只支持 AVChatRoom

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

参数详解

参数名称 参数类型 是否必填 平台 描述
groupID String 全部 需要删除属性的群组id
keys List< String > 全部 删除的属性key值

返回模板

V2TimCallback

{
    code : int
    desc : String
}

返回值详解

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

代码示例

    // 注意:需要先调用joinGroup进入直播群才能进行设置
    // 删除指定群属性
    V2TimCallback deleteGroupAttributesRes = await TencentImSDKPlugin
        .v2TIMManager
        .getGroupManager()
        .deleteGroupAttributes(
          groupID: "groupID", 
          keys: ["custom"]
        );
    if (deleteGroupAttributesRes.code == 0) {
      // 删除成功
    }

results matching ""

    No results matching ""