sure thing, hopefully that helps in resolving this
Solution NOT working for some clients
//intialize Auth0
angularAuth0Provider.init({
clientID: 'YOUR_CLIENT_ID',
domain: 'YOUR_DOMAIN',
responseType: 'token id_token',
redirectUri: 'YOUR_REDIRECT_URI',
scope: 'openid email profile'
});
//Then on my login page, do this
this.angularAuth0.authorize();
//This will take to Auth0 login page, once user's logged in, Auth0 will redirect back to the callback page where I do this
this.angularAuth0.parseHash((err, authResult) => {
if (authResult && authResult.accessToken && authResult.idToken) {
//everything good ... redirect to home page
}
else{
//something went wrong
}