I try to integrate Auth0 with my Ionic app, however i ran into problem that i can’t solve. According to the Auth0 log, it is a “success login”, however the isAuthenticated() is always false. I added console.log as below:
public login() {
....
client.authorize(options, (err, authResult) => {
if(err) {
console.log("Auth - err: " + JSON.stringify(err));
throw err;
}
...
}
}
isAuthentication() is always false because of this error:
Auth - err: {"original":{"line":80675,"column":22,"sourceURL":"http://x.x.x.x:8100/build/vendor.js","crossDomain":true,"method":"POST","url":"https://<tenant>.auth0.com/oauth/token"},"code":null,"description":null,"name":"Error"}
P.S - Work well in Android version
Could someone help me with this? Thank you.