Loading...
Loading...
OpenID Connect identity layer. Use for SSO.
npx skill4agent add g1joshi/agent-skills openid-connectnameemailpicture// 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
}/userinfoopenidprofileemail/.well-known/openid-configurationaudissnone| Error | Cause | Solution |
|---|---|---|
| Scope | Add |
| Wrong Public Key. | Refresh JWKS from the discovery endpoint. |