Suche…


Bemerkungen

Es gibt mehrere andere Active Directory-APIS- activedirectory2 , z. B. activedirectory2 und adldap .

Aktiviertes Verzeichnis verwenden

Das folgende Beispiel stammt aus den vollständigen Dokumenten, die hier (GitHub) oder hier (NPM) verfügbar sind .

Installation

npm install --save activedirectory

Verwendungszweck

// 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
Lizenziert unter CC BY-SA 3.0
Nicht angeschlossen an Stack Overflow