Send the attributes received from SAML assertion to a different application

59 Views Asked by At

I created a spring boot app with SAML2.0 integration with Okta as the IDP. Am able to successfully authenticate using okta and am getting back the required attributes from SAML assertion. Am using SP initiated flow. Now, I need to send these attributes to another application, which is not using Spring Boot. What is the best way to send the required attributes so that the other application can get the details and authenticate against its own database?

Let's say Application A is spring boot app implementing SAML2.0 and receiving SAML response. Now Application B is another application which needs to receive user profile attributes from Application A and uses it to authenticate on its side.

Can I convert the SAML assertion into a token ? How can I do that ?

Am new to Spring Boot and SAML, so am not sure what are the best options to move forward.

As of now, I have spring boot application with SAML2.0 running successfully.

0

There are 0 best solutions below