Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/G1Joshi/Agent-Skills --skill openid-connect명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
SOC 직업 분류 기준
| name | openid-connect |
| description | OpenID Connect identity layer. Use for SSO. |
OIDC extends OAuth 2.0 to provide Identity. While OAuth handles "Access" (Authorization), OIDC handles "Who are you?" (Authentication).
name, email, picture from a provider.// Request
GET /authorize?
response_type=code&
scope=openid profile email& <-- 'openid' scope triggers OIDC
client_id=...&
redirect_uri=...
// Token Response
{
"access_token": "SlAV32hkKG...", // For API access
"id_token": "eyJ0eXKiOiJK...", // JWT containing User Profile
"expires_in": 3600
}
A JSON Web Token (JWT) that contains claims (assertions) about the authentication event and the user.
A standard OAuth protected endpoint (/userinfo) where you can send the Access Token to get more user details.
openid: Required to use OIDC.profile: Request access to name, picture, etc.email: Request access to email./.well-known/openid-configuration. A JSON file that lists the issuer, authorization endpoint, token endpoint, and public keys (JWKS) automatically.
Do:
aud) claim matches your Client ID.iss) claim matches the provider.Don't:
none).| Error | Cause | Solution |
|---|---|---|
id_token missing | Scope openid not requested. | Add openid to scopes. |
Signature Invalid | Wrong Public Key. | Refresh JWKS from the discovery endpoint. |