Using activedirectory

suggest change

The example below is taken from the full docs, available here (GitHub) or here (NPM).

Installation

npm install --save activedirectory

Usage

// Initialize
var ActiveDirectory = require('activedirectory');
var config = {
    url: 'ldap://dc.domain.com',
    baseDN: 'dc=domain,dc=com'
};
var ad = new ActiveDirectory(config);
var username = 'john.smith@domain.com';
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!');
    }
});

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents