chat.getGroupMemberProfile(options);
Name | Type | Description |
groupID | String | 群组 ID。 |
userIDList | Array | 要查询的群成员用户 ID 列表。 |
memberCustomFieldFilter | Array | undefined | 群成员自定义字段筛选。可选,若不填,则默认查询所有群成员自定义字段。 |
Promise
let promise = chat.getGroupMemberProfile({groupID: 'group1',userIDList: ['user1', 'user2'], // 注意:即使只获取一个群成员的资料,也要用数组类型,例如:userIDList: ['user1']memberCustomFieldFilter: ['group_member_custom'], // 筛选群成员自定义字段:group_member_custom});promise.then(function(imResponse) {console.log(imResponse.data.memberList); // 群成员列表}).catch(function(imError) {console.warn('getGroupMemberProfile error:', imError);});
TencentCloudChat.TYPES.GRP_AVCHATROOM
类型的群组(即直播群)不支持此操作。chat.setGroupMemberNameCard(options);
Name | Type | Description |
groupID | String | 群组 ID 或 话题 ID。 |
userID | String | undefined | 可选,默认修改自身的群名片。 |
nameCard | String | 群成员名片。 |
Promise
let promise = chat.setGroupMemberNameCard({groupID: 'group1',userID: 'user1',nameCard: '用户名片',});promise.then(function(imResponse) {console.log(imResponse.data.group); // 设置后的群资料console.log(imResponse.data.member); // 修改后的群成员资料}).catch(function(imError) {console.warn('setGroupMemberNameCard error:', imError); // 设置群成员名片失败的相关信息});
TencentCloudChat.TYPES.GRP_AVCHATROOM
类型的群组(即直播群)不支持此操作。chat.setGroupMemberCustomField(options);
Name | Type | Description |
groupID | String | 群组 ID 或 话题 ID。 |
userID | String | undefined | 可选,不填则修改自己的群成员自定义字段。 |
memberCustomField | Array | 群成员自定义字段。 数组元素的结构如下: key --- String --- 自定义字段的 Key value --- String --- 自定义字段的 Value |
Promise
let promise = chat.setGroupMemberCustomField({groupID: 'group1',memberCustomField: [{key: 'group_member_test', value: 'test'}],});promise.then(function(imResponse) {console.log(imResponse.data.group); // 修改后的群资料console.log(imResponse.data.member); // 修改后的群成员资料}).catch(function(imError) {console.warn('setGroupMemberCustomField error:', imError); // 设置群成员自定义字段失败的相关信息});
本页内容是否解决了您的问题?