I'm having an issue with logging into my application using Auth0. I have integrated Auth0 Lock version 10.3.0
through a CDN link in my project and am utilizing it as shown below:
let options = {
disableSignupAction: true,
rememberLastLogin: false,
gravatar: false
}
// Display the login form
this.auth0Lock.show(options, (err, profile, token) => {
if (err) {
this.$log.error('Login error:', err)
return reject(err)
}
});
However, when attempting to login with Google, the callback function does not trigger and I cannot retrieve the token.