gpt4 book ai didi

node.js - npm activedirectory 获取 objectGUID

转载 作者:太空宇宙 更新时间:2023-11-04 02:02:33 24 4
gpt4 key购买 nike

我有一个 Nodejs 应用程序,但我似乎无法获取实体的唯一 ID这是我正在使用的模块:

https://www.npmjs.com/package/activedirectory

拉取组,我似乎无法获得以下属性:

  • objectGUID

  • objectSid

这是片段

var ad = new ActiveDirectory(domainConfig);
var query = 'CN=*';
ad.findGroups(query, function (err, result) {
if (err) {
console.log(err);
log.error("No Groups found.");
}
log.info(result);
});

我错过了什么吗?默认情况下,所有属性都应该返回

attributes - attributes to select and return (if these are set, the server will return only these attributes). Defaults to the empty set, which means all attributes.

最佳答案

我同意,这是一个错误。但是,您可以通过显式指定所需的属性来解决此问题。请注意,这些区分大小写。

var ad = new ActiveDirectory(domainConfig);
var query = { filter: 'CN=*'
attributes: ["dn", "cn", "description", "objectGUID", "objectSid"]};
ad.findGroups(query, function (err, result) {
if (err) {
console.log(err);
log.error("No Groups found.");
}
log.info(result);
});

关于node.js - npm activedirectory 获取 objectGUID,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45468439/

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