尝试将活动目录域连接到django网站时,我无法使用LDAPSearch功能。
试图导入ldap搜索抛出错误。
from django_auth_ldap.config import LDAPSearch
AUTH_LDAP_USER_SEARCH = LDAPSearch(
'ou=users,dc=contoso1,dc=com',
ldap3.SCOPE_SUBTREE,
'(uid=%(user)s)',)
from django_auth_ldap.config import LDAPSearch, GroupOfNamesType
ModuleNotFoundError: No module named 'django_auth_ldap.config'