Overview
I'd like the ability to access user_metadata and app_metadata in the user object.
Details
When accessing the user object as shown below, I'm only able to access email, email_verified, name, nickname, picture, sub, and updated_at.
const { user } = useAuth0();
However, I'd also like the ability to access user_metadata and app_metadata so that I don't have to make separate calls and figure out how to store it securely. (I run a subscription site and want the ability to check subscription status within the user object, which is updated via an API in response to subscription events.)
Overview
I'd like the ability to access
user_metadataandapp_metadatain the user object.Details
When accessing the user object as shown below, I'm only able to access
email,email_verified,name,nickname,picture,sub, andupdated_at.However, I'd also like the ability to access
user_metadataandapp_metadataso that I don't have to make separate calls and figure out how to store it securely. (I run a subscription site and want the ability to check subscription status within the user object, which is updated via an API in response to subscription events.)