Above screenshot “sign up form success” the rest are not unfortunately.
Here’s my code
import Auth0Lock from 'auth0-lock'
const options = {
additionalSignUpFields: [
{
name: 'fName',
placeholder: 'Enter your first name',
},
{
name: 'lastName',
placeholder: 'Enter your last name',
},
],
auth: {
responseType: 'token',
sso: false,
},
allowShowPassword: true,
allowedConnections: ['Username-Password-Authentication', 'google-oauth2'],
}
const lock = new Auth0Lock(auth0ClientId, auth0Domain, options)
const handleLogin = useCallback(() => {
lock.show()
}, [])
I’m literally scratching my head overnight because I can’t make it work.
Also, I’m using auth0-react together with auth0-lock which I’m not sure if need.
Can you let us know the reproduction steps? Are you using Embedded Login with Auth0 lock?
When you expand the See details for this error, what does it say? Maybe you have added the wrong callback URL in your application configuration?