0

I was able to get attributes about an user by doing queries on LDAP using Python ldap but I don't know how to obtain his DN.

Remark: Doing CN=sAMAccount,base_dn) is not valid because the user can be somewhere in another sub-tree.

Which is the proper way of getting the DN for an user for which I do have the sAMAccount?

4

1 回答 1

1

搜索结果包含:

  • 搜索结果条目列表。列表中的每个搜索结果条目都包含条目的可分辨名称和(部分)属性列表

或者

  • 搜索结果参考列表。每个搜索结果引用都包含一系列 URI

在条目或引用之后是单个搜索结果完成消息。

因此,如果任何条目匹配,它们将在搜索结果条目列表中返回,每个条目都包含匹配条目的可分辨名称。您的 python API 文档应包含有关如何提取匹配条目的可分辨名称的信息。

于 2012-04-07T16:20:47.357 回答