deleteGroupAttributes
功能介绍
删除指定群属性
如果 keys 字段填 null ,则会清空所有的群属性。
目前只支持 AVChatRoom
initGroupAttributes、setGroupAttributes、deleteGroupAttributes 接口合并计算, SDK 限制为5秒10次,超过后回调8511错误码;后台限制1秒5次,超过后返回10049错误码
参数详解
参数名称 | 参数类型 | 是否必填 | 描述 |
---|---|---|---|
groupID | string | 是 | 需要删除属性的群组id |
keys | string[] | 是 | 删除的属性key值 |
返回模板
V2TimCallback
{
code : number
desc : string
}
返回值详解
名称 | 数值类型 | 描述 |
---|---|---|
code | number | 请求结果错误码 |
desc | string | 请求结果描述符 |
代码示例
// 注意:需要先调用joinGroup进入直播群才能进行设置
import { TencentImSDKPlugin } from 'react-native-tim-js';
// 删除指定群属性
const deleteGroupAttributesRes = await TencentImSDKPlugin.v2TIMManager
.getGroupManager()
.deleteGroupAttributes('groupID', ['custom']);
if (deleteGroupAttributesRes.code === 0) {
// 删除成功
}