searchJoinedGroups

public abstract void searchJoinedGroups(String groupName, PagingQueryOption option, IRongCoreCallback.PageResultCallback<GroupInfo> callback)

Search for groups I have joined by group name

Parameters

groupName

The search keyword for group name. Cannot be empty, maximum length of 64 characters, does not support pure spaces, and supports fuzzy search. Trim leading and trailing spaces before querying.

option

Pagination request parameters. Refer to PagingQueryOption, which includes the page token (optional, returns the first page if not provided), the number of items per page (maximum of 200), and whether to query in ascending order (default is descending).

callback

The result is returned through this callback after the operation is completed. Note: This interface returns the total number of items in the paginated data.