flask-simpleldap
flask-simpleldap copied to clipboard
LDAP authentication extension for the Flask web framework
I ran into an error and could not debug because the error handling fails: ``` File "/usr/local/lib/python3.7/site-packages/flask_simpleldap/__init__.py", line 115, in bind conn = self.initialize File "/usr/local/lib/python3.7/site-packages/flask_simpleldap/__init__.py", line 104, in initialize...
Proposing that `get_user_groups(self, user)` always returns a list, or that the example is changed to recommend that you check for a None before setting g.ldap_groups. Having g.ldap_groups be None is...
 
I'm using flask-simpleldap in my project for providing ldap login functionality. Some users having issues setting up the right configuration. For debugging purposes it would be great if the debug...
File "/usr/local/lib/python3.6/site-packages/flask_simpleldap/__init__.py", line 6, in from ldap import filter as ldap_filter ImportError: cannot import name 'filter'
My issue is the same as #28 and #29. The fix in #29 also resolves my issue but I'd like to understand what I'm doing incorrectly to cause the struggle....
I want to get all the groups my users are members of, not just the first-level groups. E.g. if I have a user "bob" who is a member of group...
I'm not sure if this project is maintained anymore, but I was trying to get it working with Flask 3 and it seems there's been an API update to an...
Hi, I'm using flask-simpleldap in the Dash app and it works great when the page is opened in Chrome! But it doesn't seem to be working with Edge - I...
Hello, I am using the [guide from here ](https://towardsdatascience.com/a-simple-way-to-integrate-dash-with-ldap-4d5d059ee3a6) to setup Dash within Flask to get ldap authentication. I was able to get the server to authenticate users, but I...