You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
this.Logger.LogDebug("payload was fetched from easyauth headers, id: {0}",id);
97
+
this.Logger.LogDebug("payload was fetched from easyauth headers, name: {0}",name);
98
98
99
-
varidentity=newGenericIdentity(id,"AuthenticationTypes.Federation");// setting ClaimsIdentity.AuthenticationType to value that azuread non-easyauth setups use
99
+
varidentity=newGenericIdentity(name,"AuthenticationTypes.Federation");// setting ClaimsIdentity.AuthenticationType to value that azuread non-easyauth setups use
100
100
101
101
this.Logger.LogInformation("building claims from payload...");
//foreach (var claim in xMsClientPrincipal["claims"]) { if (claim["typ"].ToString() == ClaimTypes.NameIdentifier) { nameidentifier = claim["val"].ToString(); } } // line above works not required
this.Logger.LogDebug("payload was fetched from easyauth me json, id: {0}",id);
153
+
this.Logger.LogDebug("payload was fetched from easyauth me json, name: {0}",name);
154
154
155
-
varidentity=newGenericIdentity(id,"AuthenticationTypes.Federation");// setting ClaimsIdentity.AuthenticationType to value that azuread non-easyauth setups use
155
+
varidentity=newGenericIdentity(name,"AuthenticationTypes.Federation");// setting ClaimsIdentity.AuthenticationType to value that azuread non-easyauth setups use
156
156
157
157
this.Logger.LogInformation("building claims from payload...");
0 commit comments