我一直在使用一些教程来了解必须在 application.yml 中设置哪些属性。似乎没有关于可以设置的完整属性集的任何文档。这是一个例子
security:
saml2:
relyingparty:
registration:
samlexample:
signing:
credentials:
- private-key-location: "classpath:credentials/private.key"
certificate-location: "classpath:credentials/certificate.crt"
decryption:
credentials:
- private-key-location: "classpath:credentials/private.key"
certificate-location: "classpath:credentials/certificate.crt"
identityprovider:
singlesignon:
sign-request: false
# metadata-uri: https://dev-2148273.okta.com/app/exk2iacdpvAt1bS3D5d7/sso/saml/metadata
metadata-location: "classpath:okta-metadata.xml"
有谁知道与我可以设置哪些 SAML 属性相关的文档?例如最后一个属性不正确。我想创建一个包含元数据的文件,而不是 URI,并在 application.yml 中使用它,但我不知道属性名称是什么。
拥有一个包含可在 application.yml 中设置的 SAML 2 属性文档的网页会很有帮助。