Reputation: 379
I am rather new to SAML, specifically integrating applications with Keycloak. I am running into an issues with <AuthnContextClassRef>
that's part of <AuthnContext>
. The requirements from the SP state that the URN needs to end with PasswordProtectedTransport
. The output I am getting in the returned SAML assertion is ending with unspecified
:
My output: <saml:AuthnContextClassRef>urn:oasis:names:tc:SAML:2.0:ac:classes:unspecified</saml:AuthnContextClassRef>
Desired output: <saml:AuthnContextClassRef>urn:oasis:names:tc:SAML:2.0:ac:classes:PasswordProtectedTransport</saml:AuthnContextClassRef>
Where can I define this in Keycloak?
Upvotes: 4
Views: 1691