An implementation of the Microsoft OAuth flow
Add the package to meteor
meteor add jonshaffer:microsoft
The usage is pretty much the same as all other OAuth flow implementations for meteor. It's inspired by the official Google meteor package. Basically you can use:
var callback = Accounts.oauth.credentialRequestCompleteHandler(callback);
Microsoft.requestCredential(options, callback);
For examples and more information on what options you can use, check out: jonshaffer:accounts-microsoft.