This repository was archived by the owner on Dec 13, 2018. It is now read-only.

Description
Previously with Stormpath i changed a user's password(after validating the current password) like this:
req.user.password = req.body.password;
req.user.save(function (err,res) {
...
});
This doesn't seem to work with Okta. I don't see any error in the response, its just the user object as usual.