django-saml2-auth
django-saml2-auth copied to clipboard
Django SAML2 Authentication Made Easy. Easily integrate with SAML2 SSO identity providers like Okta
How can I achieve an need of mapping AD groups/rules into builtin django groups ? For example if user is in ActiveDirectory "user_can_edit_web" group I can make an transformation this...
Not sure if this is the best place to ask but my stackoverflow [question](https://stackoverflow.com/questions/57845978/does-django-saml2-auth-support-share-tokens-between-service-providers-sps) is not getting any answers, so trying here instead. Copy and posted from Stackoverflow: Does django-saml2-auth...
Fixed small typo 'will' --> 'with'
As name suggest before_login should be run befor login. New users are loggin to, but trigger do not fire.
https://github.com/IdentityPython/pysaml2/blob/master/CHANGELOG.md which version of pysaml2 is compatible with this project? I currently get the following error after setting up required metadata on `domain/login`: METADATA_LOCAL_FILE_PATH and METADATA_AUTO_CONF_URL ``` ```
``` Traceback (most recent call last): File "/usr/local/lib/python3.7/site-packages/django/core/handlers/exception.py", line 34, in inner response = get_response(request) File "/usr/local/lib/python3.7/site-packages/django/core/handlers/base.py", line 126, in _get_response response = self.process_exception_by_middleware(e, request) File "/usr/local/lib/python3.7/site-packages/django/core/handlers/base.py", line 124, in...
I'm not sure how other SAML SP works, but Okta does't have a default `UserName` attribute, but you are able to get the username from the subject. With this change,...
PySAML2 also supports the `inline` metadata format where a stringified XML is provided to the library. This builds on #61 and simplifies cases like #27 by eliminating the need to...
added the option to make the getting of the user case insensitive when login. I think it can be usefull. I me case has solved a real case that username...
Hi, this is my first attempt to configure SAML, forgive me if I ask silly/simple things but is not that easy to grasp the complete picture and the identity provider...