1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
OpenID Connect Core
===================
This section is about the core part of OpenID Connect. Authlib implemented
`OpenID Connect Core 1.0`_ on top of OAuth 2.0. It enhanced OAuth 2.0 with:
.. module:: authlib.oidc.core.grants
:noindex:
1. :class:`OpenIDCode` extension for Authorization code flow
2. :class:`OpenIDImplicitGrant` grant type for implicit flow
3. :class:`OpenIDHybridGrant` grant type for hybrid flow
.. _`OpenID Connect Core 1.0`: https://openid.net/specs/openid-connect-core-1_0.html
Authorization Code Flow
-----------------------
Implicit Flow
-------------
Hybrid Flow
-----------
|