【Golang 】使用Golang Keycloak SAML
pgmr.cloud
23 April 2023
利用Golang,利用Keycloak的SAML进行分析
1. 生成证书
SAML的Service Provider需要证书。使用以下命令生成证书:
【Golang】在20分钟内将SAML SSO添加到您的Golang服务中
pgmr.cloud
22 April 2023
【Node.js】使用Node.js和Passport.js实现单点登录SAML策略
pgmr.cloud
22 April 2023
Single sign-on (SSO) is a property of identity and access management (IAM) that enables users to securely authenticate with multiple applications and websites by logging in only once with just one set of credentials (username and password).
【Go语言Web开发】使用Golang Keycloak SAML
apaas.dev
10 November 2022
利用Golang对Keycloak的SAML进行分析。
1.生成证书
SAML的Service Provider需要证书。使用以下命令生成证书:
# openssl req -x509 -newkey rsa:2048 -keyout myservice.key -out myservice.cert -days 365 -nodes -subj "/CN=myservice.example.com"