We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The iterator is failing when deserializing the next page of results regardless of the page size.
var cursor = await _zendeskClient.Users.GetAllAsync(new CursorPager(), cancellationToken); var iterator = _iteratorFactory.Create<UserResponse>(cursor); while (iterator.HasMore()) { await iterator.NextPage(); foreach (var user in iterator) { _logger.LogDebug("User: {Name}", user.Name); } }
The text was updated successfully, but these errors were encountered:
api/v2/users
#329
Sorry, something went wrong.
Any chance we can get #329 merged and an updated nuget package released?
No branches or pull requests
The iterator is failing when deserializing the next page of results regardless of the page size.
The text was updated successfully, but these errors were encountered: