gpt4 book ai didi

node.js - ldap查询获取组node.js中的所有用户

转载 作者:太空宇宙 更新时间:2023-11-03 23:37:47 24 4
gpt4 key购买 nike

未能找到有关此事的任何信息。我需要查询具有指定组名的事件目录服务器,并接收它包含的所有用户。

然后我可以遍历这些用户并使用他们的名字和姓氏+电子邮件+电话+帐户名。

使用 Node.js 可以实现这一切吗?有人可以把我从头痛中解放出来吗?

最佳答案

使用此链接: https://www.npmjs.com/package/activedirectory#getUsersForGroup

var groupName = 'Employees';

var ad = new ActiveDirectory(config);
ad.getUsersForGroup(groupName, function(err, users) {
if (err) {
console.log('ERROR: ' +JSON.stringify(err));
return;
}

if (! users) console.log('Group: ' + groupName + ' not found.');
else {
console.log(JSON.stringify(users));
}
});

关于node.js - ldap查询获取组node.js中的所有用户,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29601123/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com