I'm integrating Auth0 to an existing client project, and I am having some trouble with the callback url after login from Auth0.
The issue is that when the callback URL is called, the id_token and the access_token are available only in the hash fragment and not on the query string. To have it available for the server, I would need it in the query string.
My responseType is of type 'code':
this.auth0 = new Auth0({
clientID: clientId,
domain: domain,
responseType: 'code',
callbackURL: 'http://mydevserver:3000/callback'
});
So the question is, how can I have id_token and access_token in the query strings?
https://auth0.com/docs/tutorials/local-testing-and-development#auth0-and-localhost