OIDC
GET /oauth/openid-configurationGET /oauth/jwksGET /oauth/authorizePOST /oauth/tokenGET /oauth/userinfoPOST /oauth/revokePOST /oauth/introspect
Sonox SSO
基于飞书的企业级 OIDC Provider。标准协议接入,PKCE、JWT、审计开箱即用。
Authorization Code + PKCE,兼容任意标准 OIDC 客户端库。
在下方控制台创建 Client,保存 client_id / client_secret。
GET {issuer}/oauth/authorize
?client_id=...
&redirect_uri=...
&response_type=code
&scope=openid profile email offline_access
&state=...
&code_challenge=...
&code_challenge_method=S256
POST {issuer}/oauth/token
Content-Type: application/x-www-form-urlencoded
grant_type=authorization_code
&code=...
&redirect_uri=...
&client_id=...
&client_secret=...
&code_verifier=...
使用 Admin API Key 管理 OAuth Client。密钥仅保存在本机浏览器。
| 名称 | Client ID | Redirect URIs | PKCE | 状态 |
|---|---|---|---|---|
| 加载中… | ||||
面向业务系统的协议端点与管理 API。
GET /oauth/openid-configurationGET /oauth/jwksGET /oauth/authorizePOST /oauth/tokenGET /oauth/userinfoPOST /oauth/revokePOST /oauth/introspectGET /admin/clientsPOST /admin/clientsPATCH /admin/clients/:idPOST /admin/clients/:id/rotate-secretHeader: Authorization: Bearer <ADMIN_API_KEY>