summaryrefslogtreecommitdiff
path: root/docs/oauth2/oidc/validator.rst
blob: 7a6f574439a9855c026d598df15bf9783c330c2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
OpenID Connect
=========================================

Migrate your OAuth2.0 server into an OIDC provider
----------------------------------------------------

If you have a OAuth2.0 provider running and want to upgrade to OIDC, you can
upgrade it by replacing one line of code:

.. code-block:: python

    from oauthlib.oauth2 import Server
    from oauthlib.oauth2 import RequestValidator

Into

.. code-block:: python

    from oauthlib.openid import Server
    from oauthlib.openid import RequestValidator

Then, you have to implement the new RequestValidator methods as shown below.

RequestValidator Extension
----------------------------------------------------

A couple of methods must be implemented in your validator subclass if you wish to support OpenID Connect:

.. autoclass:: oauthlib.openid.RequestValidator
   :members: