How do I authenticate against AD using Python + LDAP. I\'m currently using the python-ldap library and all it is producing is tears.
I can\'t even bind to perform a
I had the same issue, but it was regarding the password encoding
.encode('iso-8859-1')
Solved the problem.