We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I wonder how to send SAML Response with Attribute that contains multiple values, for example:
<Attribute Name="emails"> <AttributeValue>[email protected]</AttributeValue> <AttributeValue>[email protected]</AttributeValue> </Attribute>
Only found that if I pass array ["[email protected]", "[email protected]"] as an value it transforms to string: [email protected],[email protected]
["[email protected]", "[email protected]"]
[email protected],[email protected]
The text was updated successfully, but these errors were encountered:
@tngan Can you help with it?
Sorry, something went wrong.
@antsremedy We haven't supported one attribute contains multiple values yet. Let me handle this as a feature request.
No branches or pull requests
I wonder how to send SAML Response with Attribute that contains multiple values, for example:
<Attribute Name="emails"> <AttributeValue>[email protected]</AttributeValue> <AttributeValue>[email protected]</AttributeValue> </Attribute>
Only found that if I pass array
["[email protected]", "[email protected]"]
as an value it transforms to string:[email protected],[email protected]
The text was updated successfully, but these errors were encountered: