I am just using sample code for react. It is happening all the time.
I don’t see any errors in the error logs. The login is getting completed successfully.
Below is my auth config.
auth0 = new auth0.WebAuth({
domain: auth.domain,
clientID: auth.clientID,
redirectUri: auth.redirectUri,
responseType: “token id_token”,
scope: “openid”,
audience: auth.audience,
issuer: auth.issuer
});
Should I try adding email and profile to the scope?
Thanks