如何使用Active Directory(AD)中的广告或ldapJS在Node.js中获取组的所有者

时间:2019-05-09 03:49:14

标签: node.js active-directory ldap ldapjs

我需要通过指定组名来从AD获取组的所有者。目前,我可以吸引一组用户。我正在使用Active Directory npm模块开发这是NodeJS。


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));
     }
 })

我也尝试使用所有者标签指定选项,但是它不起作用

 var opts = {
     includeMembership: ['owner']
   };

ad.getUsersForGroup(opts,"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));
     }
 })

0 个答案:

没有答案