Custom Django Oauth backend for Ressource Servers to download full user data fom Authorization Server
Project description
If you’ve read RFCs on OAuth or (more likely) the django-oauth-toolkit docs, you know that a Ressource Server sorts of delegates user authentication to the Authorization Server.
But the current implementation in Django OAuth Toolkit only copies the username from the Authorization Server in its database. This implies that all users have no special permissions, i.e. you lose administrator rights when you access the Ressource Server !
The class FullUserOAuthBackend aims to fix this by fetching the full user model from the Authorization Server after you’ve accessed the Ressource Server.
Installation
pip install oauth-slave-accounts
Setup
Ressource Server
- Subclass ressource_server_utils.backend.FullUserOAuthBackend and override the following :
property fetch_url : a string that describes your Authorization Server’s endpoint to get User data e.g. http://auth.srv/user/{}/
property UserSerializer : a DjangoRestFramework Serializer that defines how to parse your Authorization Server’s response
- And optionnally
method get_auth_token()
method refresh_auth_token()
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
Hashes for oauth-slave-accounts-0.1.1.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | c0361fa155935f94b286eac526b2b0ddad8ca5a5416a0246209595716150d924 |
|
MD5 | 14c853d14b293f1b40c2763757b1a813 |
|
BLAKE2b-256 | e9c8dba0f137b8fde29884d0e81381c2b39d4fd0a533d8399b13f8c298b0e4b9 |