I have a new project where to client asks for SAML authorization. We will develop the project with spring security(so i'm already a bit familiar with OAuth2,JWT,principals,authenticationmanagerbuilder etc) , I guess with REST API. I know spring security has a SAML library and the documentation is pretty complete on first sight.
I was wondering if there is a good course on this subject or what is the best and/or fastest way to learn in your opinion? I'm willing to pay for quality , I like video courses like Udemy & Plurarsight but i'm open for all suggestions.
Thanks in advance!
CodePudding user response:
Refer to the SAML2 spec where you can find more details about SAML. https://docs.oasis-open.org/security/saml/v2.0/saml-core-2.0-os.pdf.
CodePudding user response:
In addition to @Dinithi answer, you can get started by reading the reference docs for SAML 2.0.
You can also try some samples from the Spring Security samples repository.