Better OpenID Connect authentication support for Django
Project description
This is a Django login view that authenticates against an OpenID Connect Authentication Server.
Use it if you own a single Authentication Server that you want to share between multiple apps.
Huh?
This is a fork of the abandoned django-auth-oidc. Original code by the Aiakos team.
What is OpenID Connect?
It’s a OAuth2-based standard for authentication in applications.
It can be used for social logins, and for setting up Single Sign-On into multiple services hosted by the same company. In the last case, it somewhat supersedes LDAP, as with OIDC people are entering their credentials only into the views served by the Authentication Server, and not into all the company’s applications.
Requirements
Python 3.5+
Django 4.x+
Installation
pip install django-better-auth-oidc
settings.py
INSTALLED_APPS += ['django_better_auth_oidc']
urls.py
urlpatterns += [
path('auth/', include('django_better_auth_oidc.urls')),
]
Configuration
Server Cache Lock
By default, DBAO will only fetch the server info based on a cache lock timer. To disable this feature, use the setting AUTH_SERVER_CACHE_LOCK and set to false.
Behavior
AUTH_SCOPE (default: [‘openid’]) - list of scopes to request from the auth server
AUTH_GET_USER_FUNCTION (default: ‘django_auth_oidc:get_user_by_username’) - name of a function that takes the user info dict, and returns an user object representing that user; note that it should set the user.backend attribute.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file django-better-auth-oidc-0.2.0.tar.gz
.
File metadata
- Download URL: django-better-auth-oidc-0.2.0.tar.gz
- Upload date:
- Size: 5.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f591e0dc3f67ab7b09e7a715fa8d29b2150bc0fb1f0e544d5711c30f5ddf803c |
|
MD5 | 80fb9141cbc4084d24869c4eaf0fbe28 |
|
BLAKE2b-256 | 6ce9e7db74dd360cf53a5ab8f2a22827d433053340350a07845c9a889418757f |
File details
Details for the file django_better_auth_oidc-0.2.0-py2.py3-none-any.whl
.
File metadata
- Download URL: django_better_auth_oidc-0.2.0-py2.py3-none-any.whl
- Upload date:
- Size: 8.0 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f020b47f8a59fa8a5157df3a0280e2a351ad7d793e91a549516ece57d0c44c44 |
|
MD5 | 282851df8bc3ced85c7c91881166283f |
|
BLAKE2b-256 | baa198ab7cf3ca958d95d4712a447b88aa5192f94bd298d8574373fb21827620 |