How to configuration of IDP metadata and SP metadata in Spring Security SAML sample?

前端 未结 2 1472
醉话见心
醉话见心 2021-02-06 15:44

I want to deal with Spring Security SAML. For this, I start to explore Spring Security SAML. At the beginning, I create an account at SSOCircle. Than I configurated of IDP meta

2条回答
  •  傲寒
    傲寒 (楼主)
    2021-02-06 16:14

    Follow the steps in the QuickStart chapter. Some differences to note:

    1. Sign up at http://www.ssocircle.com/. You need to verify your email address.
    2. The metadataGeneratorFilter section of sample/src/main/webapp/WEB-INF/securityContext.xml should look like this (Note: signMetadata property is commented out):

      
      
          
            
        
          
      
      

    3. Build and start the web server locally. Then download the metadata at http://localhost:8080/spring-security-saml2-sample/saml/metadata. Copy the contents to your clipboard.
    4. Update the metadata of your new profile at https://idp.ssocircle.com/sso/hos/ManageSPMetadata.jsp.
    5. Enter the FQDN of the service as "urn:test:YourName:YourCity". You need to enter unique values for Your Name and Your City. Paste in the metadata from above.
    6. To Test:
      1. Logout of SSO Circle Service.
      2. Go to http://localhost:8080/spring-security-saml2-sample
      3. You should be redirected to the SSO Circle login.
      4. Login with your SSO Circle credentials.
      5. You should be redirected to your local service provider page and authenticated.

提交回复
热议问题