Node.js
node.js에서의 Windows 인증
수색…
비고
activedirectory2
및 adldap
과 같은 몇 가지 다른 Active Directory APIS가 있습니다.
activedirectory 사용하기
아래의 예는 전체 문서 (여기서는 GitHub 또는 NPM) 에서 가져온 것입니다.
설치
npm install --save activedirectory
용법
// 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
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow