meteor-auth0
meteor-auth0 copied to clipboard
How to get auth0 user metadata as part of user information?
Hi, I am using this package in my application, it's working fine. But I am unable to get the user metadata along with the user information. Below is the sample code tried to fetch the metadata:
const scopes = {
auth: {
params: {
scope: 'user_metadata'
}
}
};
auth0 = initLock({
closable: true,
autoclose: true,
allowForgotPassword: true,
allowSignUp: false,
scopes
});
auth0.show();
Could you please help me on this.