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

그룹 멤버 검색

Feature Description

Only locally stored group members can be searched for, such as the list of group members or group member profiles that have been pulled.
Note:
This feature cannot be used for audio-video groups (AVChatRoom) as the group members are not stored locally.

Searching a Local Group

Call the searchGroupMembers API (Details) to search for a local group member. You can set the search keyword keywordList and specify the search scope to set whether to search by the memberUserID, memberNickName, memberRemark, and memberNameCard fields of a group member.
Depending on whether groupIDList of the V2TIMGroupMemberSearchParam (Details) in searchGroupMembers is empty (null/nil), there are two cases:
If groupIDList is left empty, members in all the groups will be searched for and returned by groupID.
If groupIDList is not left empty, members in the specified group will be searched for.
Sample code:
// Search for group members by the keyword and group ID
const searchGroupMem = await groupManager.searchGroupMembers({
groupIDList: ["The group ID can be specified"],
keywordList: ["Keyword"],
isSearchMemberNameCard: true,
isSearchMemberNickName: true,
isSearchMemberRemark: true,
isSearchMemberUserID: true,
});