searchUsersByNickname

fun searchUsersByNickname(    nickname: String?,     callback: SearchUsersByNicknameCallback,     offset: Int = 0,     @IntRange(from = 1, to = 100) limit: Int = 100)

Searches users by nickname and gets a list of them. Search is performed by substring if it is in the beginning of the string. The current user can call this method only one time per second.

Parameters

nickname

User nickname used as search criteria.

offset

Number of elements from which the list is generated.

limit

Maximum number of users that can be received at a time.

callback

Callback with users.

Sources

Link copied to clipboard