Hi,
I’m using auth0 node.js sdk and am trying to implement signup with username-password-authentication. I’ve set my password policy in the auth0 console database connection settings to be None.
auth0Client.signup(
{
connection: 'Username-Password-Authentication',
email,
password: passwd,
}, (err, res) => {
...
})
I still get the invalid password error saying the password policy mandates One Capital Letter, One Small Letter and a Number (Min of 8 characters)
I don’t know what i’m missing here, any help would be appreciated
Thanks in advance

