一键导入
oidc-hosted-page
Implement OIDC authentication using the SSOJet Hosted Login Page — covers client configuration, user redirect, and callback token validation.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Implement OIDC authentication using the SSOJet Hosted Login Page — covers client configuration, user redirect, and callback token validation.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Implement Machine-to-Machine (M2M) authentication using SSOJet OAuth2 Client Credentials flow for backend services and daemons.
Implement "Sign in with SSO" in native Android/Kotlin applications using SSOJet OIDC with AppAuth.
Implement "Sign in with SSO" in Angular SPA applications using SSOJet OIDC with PKCE.
Implement "Sign in with SSO" in ASP.NET Core applications using SSOJet OIDC middleware.
Implement "Sign in with SSO" in Go applications using SSOJet OIDC Authorization Code flow.
Implement "Sign in with SSO" in native iOS/Swift applications using SSOJet OIDC with AppAuth.
| name | oidc-hosted-page |
| description | Implement OIDC authentication using the SSOJet Hosted Login Page — covers client configuration, user redirect, and callback token validation. |
This skill guides you through implementing the OIDC Authorization Code flow with SSOJet's Hosted Login Page.
http://localhost:3000/callback).https://auth.ssojet.com).Initialize your OIDC client with the credentials above. Use a well-maintained OIDC library for your language.
Construct the authorization URL and redirect the user.
/oauth2/authorizeresponse_type=codeclient_id=YOUR_CLIENT_IDredirect_uri=YOUR_REDIRECT_URIscope=openid profile emailOn the callback route (e.g., /callback):
code parameter from the query string./oauth2/token.id_token signature using the JWKS endpoint (/.well-known/jwks.json).Refer to the examples/ directory for complete implementations: