이 페이지는 현재 영어로만 제공되며 한국어 버전은 곧 제공될 예정입니다. 기다려 주셔서 감사드립니다.

그룹 멤버 정보

Feature Description

The methods to manipulate the group member profile are in the TencentImSDKPlugin.v2TIMManager.getGroupManager() core class.


Getting the Profile of a Group Member

You can call getGroupMembersInfo (Details) to get the group member profile. This API supports passing in multiple userID values at a time to batch get group member profiles and therefore improve the network transfer efficiency.
Below is the sample code:
// Get the group member profile
const memberInfos = await groupManager.getGroupMembersInfo("groupID", ["id1"]);


Modifying the Profile of a Group Member

The group owner or admin can call the setGroupMemberInfo API (Details) to modify the group name card (nameCard), custom field (customInfo), and other information of a group member.
Below is the sample code:
// Set the group member profile
groupManager.setGroupMemberInfo("groupID", "userID", "nameCard");