OpenID Connection Provider in Python

I was looking for how to implement the OpenID Connect provider in python, and found this library made by Roland Hedberg ( recommended by OpenID ). But I read the documents , examples and I think that examples are too complicated for people who do not have much knowledge about this (provider, wsgi and cli are mixed).

So my question is: does anyone know simpler examples or tutorials for implementing this library, or should I try to implement my provider on top of the OAuth2 library?

Thanks in advance.

+7
python openid-connect
source share
1 answer

I have so far tried this problem. Working on OAuthlib was a pain (Roland lib is also very hard to understand), so I decided to start from scratch.

django-oidc-provider can help you provide out of the box all the endpoints, data, and logic needed to add OpenID Connect features to your Django projects. Full support for Python 3 and 2. Also the latest versions of django.

View on GitHub: https://github.com/juanifioren/django-oidc-provider

Anything you want to know, ask.

Hey.

-Ignacio

+6
source share

All Articles