gpt4 book ai didi

javascript - 如何在 NodeJS 中使用 ldapjs 连接 LDAP

转载 作者:行者123 更新时间:2023-11-30 16:56:28 26 4
gpt4 key购买 nike

过去几天一直在玩弄 NodeJS,并在使用 ldapjs 模块的 LDAP 连接上运行卡住了。背景故事,我尝试连接的 Active-Directory 服务器支持 LDAPv3。

下面是我用来连接到 LDAP 服务器的代码:

var ldapClient = ldap.createClient({url: 'ldap://ldap.myhost.com.au:389'}, function (err){
if (err) {
console.log('Failed');
process.exit(1);
}
else
console.log('Through');
});

在给定的example ,它不包括最后一个回调函数,我尝试了它,因为提到的常见模式大多数操作都包括回调,所以我认为我可以有一点运气,但我没有。

我也尝试过使用和不使用回调,仍然没有用。

即使我将 url 更改为无效的 ldapClient 容器也将始终返回 true。

-- 到目前为止,James Thomas 的 answer 已经对此进行了解释下面——

编辑:

我尝试将用户绑定(bind)到 LDAP 并按照以下代码片段进行搜索查询:

ldapClient.bind('cn=drupal,ou=SystemAccount,dc=myhost,dc=com,dc=au', '', function (err) {
if (err) {
console.log('LDAP binding failed... disconnecting');
process.exit(1);
}
});

var opts = {
scope: 'sub'
};

var result = ldapClient.search('ou=Users,dc=myhost,dc=com,dc=au', opts, function(err, res) {
assert.ifError(err);

res.on('searchEntry', function(entry) {
console.log('entry: ' + JSON.stringify(entry));
});
res.on('searchReference', function(referral) {
console.log('referral: ' + referral.uris.join());
});
res.on('error', function(err) {
console.error('error: ' + err.message);
});
res.on('end', function(result) {
console.log('status: ' + result.status);
});
});

此代码不向屏幕和结果变量打印任何内容,该变量用于保存返回“true”的搜索方法返回值。

有人可以分享它是如何完成的吗?

最佳答案

当您执行该函数时,ldapjs.createClient() 调用不会连接到服务器,而是设置您在调用返回的“客户端”对象上的方法时使用的身份验证凭据。

例如,您需要执行以下操作:

var client = ldap.createClient({url: 'ldap://ldap.myhost.com.au:389'})
var entry = {
cn: 'foo',
sn: 'bar',
email: ['foo@bar.com', 'foo1@bar.com'],
objectclass: 'fooPerson'
};
client.add('cn=foo, o=example', entry, function(err) {
assert.ifError(err);
});

关于javascript - 如何在 NodeJS 中使用 ldapjs 连接 LDAP,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29643637/

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