Zoeken…


Opmerkingen

Er zijn verschillende andere Active Directory APIS, zoals activedirectory2 en adldap .

Activedirectory gebruiken

Het onderstaande voorbeeld is afkomstig uit de volledige documenten, hier beschikbaar (GitHub) of hier (NPM) .

Installatie

npm install --save activedirectory

Gebruik

// Initialize
var ActiveDirectory = require('activedirectory');
var config = {
    url: 'ldap://dc.domain.com',
    baseDN: 'dc=domain,dc=com'
};
var ad = new ActiveDirectory(config);
var username = '[email protected]';
var password = 'password';
// Authenticate
ad.authenticate(username, password, function(err, auth) {
    if (err) {
        console.log('ERROR: '+JSON.stringify(err));
        return;
    }
    if (auth) {
        console.log('Authenticated!');
    }
    else {
        console.log('Authentication failed!');
    }
});


Modified text is an extract of the original Stack Overflow Documentation
Licentie onder CC BY-SA 3.0
Niet aangesloten bij Stack Overflow