This repository was archived by the owner on Apr 26, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Outdated Auth0 OIDC Docs #16753
Copy link
Copy link
Open
Description
Description:
The current docs for using Auth0 (snippet below) suggest using Rules to set user attributes, but Rules is being deprecated in favour of Actions. Docs on the migration can be found here.
New Auth0 users are unable to follow the docs as they are unable to create Rules. Existing users aren't yet affected.
function addPersistenceAttribute(user, context, callback) {
user.user_metadata = user.user_metadata || {};
user.user_metadata.preferred_username = user.user_metadata.preferred_username || user.user_id;
context.idToken.preferred_username = user.user_metadata.preferred_username;
auth0.users.updateUserMetadata(user.user_id, user.user_metadata)
.then(function(){
callback(null, user, context);
})
.catch(function(err){
callback(err);
});
}
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels