In the CreateSubjectAsync method of SignInResponseGenerator we are currently returning all claims allowed for that client based on the allowed scopes for that client.
When using SAML 1.1, if we do not create a claim mapping for every claim type allowed in a scope, we get an exception from the SamlSecurityTokenHandler.
In the
CreateSubjectAsync
method ofSignInResponseGenerator
we are currently returning all claims allowed for that client based on the allowed scopes for that client.When using SAML 1.1, if we do not create a claim mapping for every claim type allowed in a scope, we get an exception from the
SamlSecurityTokenHandler
.