I am trying to make a call get all users using the okta sdk for dotNet.
I got a lot of features working using the SDK like Get User, Create User and etc,
However, when I try to get all of the users, the call just hangs.
I tried the following methods:
var allUsers = await client.Users.ToArrayAsync();
var allUsers = await client.Users.ToListAsync();
var allUsers = await client.Users.ListUsers().ToArrayAsync();
But, the system just hangs.
The documentation says: The SDK will automatically [paginate] Okta collections for you:
So, I would expect it would not get all of the users and I can some how page through them.
I have no idea what I am doing wrong. Any help would be appreciated.