Node.js
Windows-autentisering under node.js
Sök…
Anmärkningar
Det finns flera andra Active Directory APIS, såsom activedirectory2
och adldap
.
Med hjälp av activedirectory
Exemplet nedan är hämtat från de fullständiga dokumenten som finns tillgängliga här (GitHub) eller här (NPM) .
Installation
npm install --save activedirectory
Användande
// 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
Licensierat under CC BY-SA 3.0
Inte anslutet till Stack Overflow