openid-connect
Installation
SKILL.md
OpenID Connect (OIDC)
OIDC extends OAuth 2.0 to provide Identity. While OAuth handles "Access" (Authorization), OIDC handles "Who are you?" (Authentication).
When to Use
- Single Sign-On (SSO): One login for multiple apps.
- User Profile: Getting
name,email,picturefrom a provider. - Enterprise Identity: Connecting to Active Directory via OIDC.
Quick Start
// Request
GET /authorize?
response_type=code&
scope=openid profile email& <-- 'openid' scope triggers OIDC
client_id=...&
redirect_uri=...