Not getting any access to any of the access token attributes that we see in the logs/users catergory. All we are getting when trying to access any of the componets are null values. User is successfuly being authenticated but no access to any of the values.
Here is our Lock widget settings/Values:
var webAuth = new auth0.WebAuth({
domain: ‘lssp.auth0.com’,
clientID: ‘VLguJE3BK0C6TAFVkS4JaoNQsfac7VUp’,
redirectUri: ‘http://localhost:51102/About.aspx’,
audience: ‘https://lssp.auth0.com/userinfo’,
responseType: ‘code’,
scope: ‘openid profile email’
});
Here is our attempt at retrieving the values:
string name = ClaimsPrincipal.Current.FindFirst(“name”)?.Value;
Label1.Text = name;
Any ideas what could be making us get nothing as values in the end?