autodiscover-activesync
v0.0.1
Published
Autodiscover for ActiveSync
Downloads
5
Maintainers
Readme
autodiscover-activesync
Overview
Usage Notes
This library uses the process outlined https://msdn.microsoft.com/en-us/library/office/jj900169(v=exchg.150).aspx and https://msdn.microsoft.com/en-us/library/office/hh352638(v=exchg.140).aspx to try and determine automatically what the Active Sync url is for the given user.
Installation
npm
npm install --save autodiscover-activesync
Usage
import { autodiscover } from 'autodiscover-activesync';
const url = autodiscover({
username : '[email protected]',
emailAddress : '[email protected]',
password: 'yourpassword',
debug: true // if you want to inspect what it is checking
});
console.log('ActiveSync URL', url);