问题:
如何使用ldapjs搜索与用户关联的操作属性?
我知道,在使用ldapsearch时,我可以使用'+‘参数获取操作属性。我熟悉ldapjs的客户端搜索功能,但不知道如何使用该函数搜索操作属性。
背景
我有一个openldap服务器正在运行,其目录布局如下:
-> Root stuff
-> dc=example,dc=com
-> cn=Manager (The olcRootDN)
-> ou=User
-> *Several entries with objectClasses {posixAccount, shadowAccount, inetOrgPerson}*
-> ou=Policies
-> *pwdPolicy with some default password policies发布于 2017-05-30 19:58:56
是。+语法是LDAP协议的一部分,而不是ldapsearch的一部分。例如,它也通过Java/JNDI工作。
https://stackoverflow.com/questions/44269244
复制相似问题