3

我没有得到以下代码的输出

from ldap3 import Server, Connection, ALL, NTLM
server = Server('servername', get_info=ALL)
conn = Connection(server, user="uname", password="pwd", authentication=NTLM)
print(server.info)
4

1 回答 1

1

您必须绑定到服务器才能读取信息。只需在打印前使用“conn.bind()”打开连接。

于 2018-05-19T07:19:56.367 回答