You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When trying to list all application users using Pagination (while resp.has_next()), the query param limit does not work. Okta will just ends up fetching all the application users.
Without pagination, the query param limit works.
However, when using with pagination (which is required to fetch a number of users > default page size: 50), the limit becomes the batch size of users to fetch in each page.
Code
I added a custom break to stop the client when the number of users fetched > limit.
When trying to list all application users using Pagination (
while resp.has_next()
), the query paramlimit
does not work. Okta will just ends up fetching all the application users.Without pagination, the query param
limit
works.However, when using with pagination (which is required to fetch a number of users > default page size: 50), the
limit
becomes the batch size of users to fetch in each page.Code
I added a custom break to stop the client when the number of users fetched >
limit
.Screenshot
Expectation
The query param
limit
is specified, whenresp.has_next()
should return False to stop fetching more users.Okta version
Latest: v2.9.8
The text was updated successfully, but these errors were encountered: