Im usign Lock to log in to my Angular 2 application and have already tried Facebook and Twitter options to log in without problem, but when i add Google log in it never shows:
lock = new Auth0Lock(
AUTH_CONFIG.clientID,
AUTH_CONFIG.domain, {
autoclose: true,
allowedConnections: 'Username-Password-Authentication', 'google-oauth2' ],
language: 'es',
theme: {
logo: 'http://wolla.com.ar/files/brand/colored-03.png',
primaryColor: '#31324F'
},
allowSignUp: false,
languageDictionary: {'title': 'Wolla' },
auth: {
redirectUrl: CALLBACK_URL,
responseType: 'token id_token',
params: {
scope: 'openid user_metadata'
}
}
});
Also if i go to Codepen in your page : https://codepen.io/pen?&editors=001 it says there was an error and never shows the Lock pop up.
Thanks in advance!