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
I have a Okta Application that has some people configured as part of multiple groups. In the SAMLResponse I do see the data: (Groups field has "QA", "Dev" and "Everyone".
However, since the library is treating everything like a key / value strings, only the last group gets attached. i.e. attributeStatement["Groups"] is "QA" (one of them)
This is probably a generic problem for handling attribute Statements where we could expect a list and not just a string.
Solution: We need to support arrays if the attribute statement is a Array. I haven't thought the solution through yet but will give it shot and send a PR :)
The text was updated successfully, but these errors were encountered:
I have a Okta Application that has some people configured as part of multiple groups. In the SAMLResponse I do see the data: (Groups field has "QA", "Dev" and "Everyone".
However, since the library is treating everything like a key / value strings, only the last group gets attached. i.e. attributeStatement["Groups"] is "QA" (one of them)
This is probably a generic problem for handling attribute Statements where we could expect a list and not just a string.
Solution: We need to support arrays if the attribute statement is a Array. I haven't thought the solution through yet but will give it shot and send a PR :)
The text was updated successfully, but these errors were encountered: