0

我正在尝试使用以下 Python 代码片段从 LDAP 中的用户检索信息。我正在使用 ldap3 库来查询 LDAP。

def searchUser():
    server = Server('myLdapServer:389')
    try:
        with Connection(server) as conn:
            conn.search('ou=xuser,ou=xxx,o=com', '(attribute=cn=user,ou=yuser,ou=xxx,o=com)', attributes=['*'])
            for entry in connection.entries:
                print(entry)
    except:
        return 'error in ldap search'

不幸的是,即使当我将 Ldap-Base 和 Ldap-Filter 输入到 Softerra Ldap-Browser 时,我也没有得到任何结果。我在 Softerra-Browser 和代码中使用相同的 Ldap 用户。

4

1 回答 1

0

好的,找到了解决方案。必须像这样在连接中提供凭据:

with ldap3.Connection(server, user="myLdapUser", password="myLdapPassword", auto_bind=True)
于 2020-07-03T11:17:12.980 回答