Hello dear community,
I am using
https://cdn.auth0.com/js/auth0-spa-js/1.2/auth0-spa-js.production.js
and
https://cdn.auth0.com/js/auth0-spa-js/1.3/auth0-spa-js.production.js
to execute the following code
createAuth0Client({
connection: ‘twitter’,
domain: XXXXXX_XXXXX,
client_id: XXXXXX_XXXXXX
}).then(function (auth0) {
auth0.loginWithPopup().then(function (token) {
alert(token);
});
});
and it is not being fired, no popup, no answer when i tested in Android with Chrome.
I tested in Chrome for windows, works.
I tested in Firefox for windows and works.
I tested in Edge for windows and works.
I tested in firefox for mobile android and works
but testing in chrome for Android using my smartphone, it does not work
Chrome version 77.0.3865.116
Android 7.0
Could you please suggest me some solution? I really need it working. Thanks a lot.