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 | StringMap | 是 | 初始化属性 |
返回模板
V2TimCallback
{
code : number
desc : string
}
返回值详解
名称 | 数值类型 | 描述 |
---|---|---|
code | number | 请求结果错误码 |
desc | string | 请求结果描述符 |
代码示例
// 注意:需要先调用joinGroup进入直播群才能进行设置
import { TencentImSDKPlugin } from 'react-native-tim-js';
// 初始化群属性
const initGroupAttributesRes = await TencentImSDKPlugin.v2TIMManager
.getGroupManager()
.initGroupAttributes(
'groupID', // 需要初始化属性的群组id
{ custom: 'custom' } // 初始化属性
);
if (initGroupAttributesRes.code === 0) {
// 初始化成功
}