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
{{ message }}
This repository has been archived by the owner on Dec 12, 2018. It is now read-only.
Hi, I'm currently using the RC1 version of stormpath-okta (and also tested with snapshot) and when I try to update/add a custom data field, the rest of the custom data fields get removed in Okta.
Which causes the request to be sent using the PUT method.
According to the current Okta documentation, the POST method should be used in order to perform partial updates of user's profile (which is what I think the code is trying to achieve when looking at this code that calls the toMap method setting partialUpdate parameter as true): http://developer.okta.com/docs/api/resources/users.html#update-profile
The text was updated successfully, but these errors were encountered:
Hi, I'm currently using the RC1 version of stormpath-okta (and also tested with snapshot) and when I try to update/add a custom data field, the rest of the custom data fields get removed in Okta.
The reason for that is this code over here:
stormpath-sdk-java/impl/src/main/java/com/stormpath/sdk/impl/ds/DefaultDataStore.java
Line 478 in b0cebbb
According to the current Okta documentation, the POST method should be used in order to perform partial updates of user's profile (which is what I think the code is trying to achieve when looking at this code that calls the toMap method setting partialUpdate parameter as true): http://developer.okta.com/docs/api/resources/users.html#update-profile
The text was updated successfully, but these errors were encountered: