Hi,
Searching for users does not have the same maximum result nor do they have the same RateLimits.
Furthermore user search returns user objects and not user ids.
Finally user searches uses a paging mechanism instead of a cursor one. The only thing you will have to do is iterate over the page results.
Cheers,
Linvi
Searching for users does not have the same maximum result nor do they have the same RateLimits.
Furthermore user search returns user objects and not user ids.
Finally user searches uses a paging mechanism instead of a cursor one. The only thing you will have to do is iterate over the page results.
var searchPage2Results = Search.SearchUsers("my_search", page: 2);
Linvi