Module for use ksu sso service
Project description
# Установка pip install ksu-sso-auth
# Настройка В settings проекта добавить: - ‘sso_auth’ в INSTALLED_APPS После этого выполнить команды ` python3 manage.py makemigrations sso_auth python3 manage.py migrate `
Добавить в urls.py проекта в переменную urlpatterns выше всего остального следующий код: ` path('admin/login/', AdminLogin.as_view()), path('admin/logout/', UserLogout.as_view()), path('sso/', include('sso_auth.urls')), ` До этого сделать импорт: ` from django.urls import path, include from sso_auth.views import AdminLogin, UserLogout `
В settings проекта добавить: - ‘sso_auth.middleware.OauthMiddleware’ в MIDDLEWARE - код ниже. нужно заполнить реальными данными от сервера авторизации ` # settings for sso login AUTH_USER_MODEL = 'sso_auth.OauthUser' AUTHENTICATION_BACKENDS = ('sso_auth.backends.TokenAuth',) SSO_URL = 'http://127.0.0.1:8000/oauth/' CLIENT_ID = '1bc2aea0-4dad-4f4a-9f3d-4e205b0fc10a' CLIENT_SECRET = 'Zo8DtoPgu6m533ySFDfBImo0Lao_sh50dxE-EAHJCkwCrNvaPztIsOQaxdB0nKrX11o' REDIRECT_URI = 'http://127.0.0.1:8001/sso/process' `
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 ksu_sso_auth-0.1.2.tar.gz
.
File metadata
- Download URL: ksu_sso_auth-0.1.2.tar.gz
- Upload date:
- Size: 6.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 09764a29f76fa360ae374d835dde3375ee85642b4952cc753d4de35e0b5766e3 |
|
MD5 | 7c3d142c88286cdbc177ef16a9efd25f |
|
BLAKE2b-256 | bb2307f76198ea1c356d1e65384dd88e5db97b49f691bc627adabf4a8c8dfcdd |
File details
Details for the file ksu_sso_auth-0.1.2-py2-none-any.whl
.
File metadata
- Download URL: ksu_sso_auth-0.1.2-py2-none-any.whl
- Upload date:
- Size: 12.7 kB
- Tags: Python 2
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0b94387e08ebe7675a0011aeb268fd240d5e2cfad38427807fbaa10fd359f6e4 |
|
MD5 | c63c0cafa10b17e6097218128a9188b3 |
|
BLAKE2b-256 | c5f62078111d678a774f93ab8c0030e981d0a6a816efb028cd187c84aac170b1 |