-
Notifications
You must be signed in to change notification settings - Fork 98
New issue
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
IUserApi.GetUserAsync no longer returns Task<User> #755
Comments
@klightspeed thanks for bringing this to our attention. I've entered an internal issue for tracking and prioritization: OKTA-829605 |
Do you have a timeline on this fix? We have a need to upgrade to v9 of this library in order to get the UserFactors |
Do you have an estimated timeline for this fix? We are trying to get factors listed, which requires we update to v9 of this sdk, but we are unable to do so until this defect is fixed. |
Can you please provide an update for this issue? This is critical for our project which requires v9. |
@bryanapellanes-okta , can you provide an update on the status of OKTA-829605? This is a critical blocker to our business. This issue prevents us from complying with NY State regulations for required MFA. |
@bryanapellanes-okta Is there anyway you please provide an update on this? Do we know when a fix will be out? Im working on a project and this is critical aspect, we need v9 |
Describe the bug?
In 9.0,
IUserApiAsync.GetUserAsync
returnsTask<UserGetSingleton>
, where it previously returnedTask<User>
. This is incompatible with the return ofIOktaCollectionClient<User>
fromIApiUserAsync.ListUsers
, requiring duplication of code to handle the two different types.This breaking change to GetUserAsync is not mentioned in the migration guide.
What is expected to happen?
IApiUserAsync.ListUsers
andIApiUserAsync.GetUserAsync
return compatible typesWhat is the actual behavior?
IApiUserAsync.ListUsers
andIApiUserAsync.GetUserAsync
return incompatible typesReproduction Steps?
Update from Okta.Sdk 8.0 to Okta.Sdk 9.0 in a project that relies on GetUserAsync returning
Task<Okta.Sdk.Model.User>
Additional Information?
No response
.NET Version
8.0.400
SDK Version
9.0.0
OS version
No response
The text was updated successfully, but these errors were encountered: