Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

esi-msal

AzureAD32MIT1.2.0-fix.2TypeScript support: included

Microsoft Authentication Library for js

implicit, js, AAD, msal, oauth

readme

Microsoft Authentication Library for JavaScript (MSAL.js)

Getting Started AAD Docs Library Reference Support Samples

The MSAL library for JavaScript enables client-side JavaScript web applications, running in a web browser, to authenticate users using Azure AD work and school accounts (AAD), Microsoft personal accounts (MSA) and social identity providers like Facebook, Google, LinkedIn, Microsoft accounts, etc. through Azure AD B2C service. It also enables your app to get tokens to access Microsoft Cloud services such as Microsoft Graph.

npm versionnpm versionCoverage Status

Installation

Via NPM:

npm install msal

Via Latest Microsoft CDN Version:

Latest compiled and minified JavaScript

<script type="text/javascript" src="https://alcdn.msauth.net/lib/1.1.3/js/msal.js"></script>
<script type="text/javascript" src="https://alcdn.msauth.net/lib/1.1.3/js/msal.min.js"></script>
`

Alternate region URLs

<script type="text/javascript" src="https://alcdn.msftauth.net/lib/1.1.3/js/msal.js"></script>
<script type="text/javascript" src="https://alcdn.msftauth.net/lib/1.1.3/js/msal.min.js"></script>

Via Latest Microsoft CDN Version (with SRI Hash):

Latest compiled and minified JavaScript

<script type="text/javascript" src="https://alcdn.msauth.net/lib/1.1.3/js/msal.js" integrity="sha384-m/3NDUcz4krpIIiHgpeO0O8uxSghb+lfBTngquAo2Zuy2fEF+YgFeP08PWFo5FiJ" crossorigin="anonymous"></script>
<script type="text/javascript" src="https://alcdn.msauth.net/lib/1.1.3/js/msal.min.js" integrity="sha384-dA0Vw9s8Y8YiIYiE44WOORFrt3cwi0rYXwpetCRnFYziAtXEZ4miG8TMSGo8BIyL" crossorigin="anonymous"></script>

Alternate region URLs

To help ensure reliability, Microsoft provides a second CDN:

<script type="text/javascript" src="https://alcdn.msftauth.net/lib/1.1.3/js/msal.js" integrity="sha384-m/3NDUcz4krpIIiHgpeO0O8uxSghb+lfBTngquAo2Zuy2fEF+YgFeP08PWFo5FiJ" crossorigin="anonymous"></script>
<script type="text/javascript" src="https://alcdn.msftauth.net/lib/1.1.3/js/msal.min.js" integrity="sha384-dA0Vw9s8Y8YiIYiE44WOORFrt3cwi0rYXwpetCRnFYziAtXEZ4miG8TMSGo8BIyL" crossorigin="anonymous"></script>

Below is an example of how to use one CDN as a fallback when the other CDN is not working:

<script type="text/javascript" src="https://alcdn.msauth.net/lib/1.1.3/js/msal.js"></script>
<script type="text/javascript">
    if(typeof Msal === 'undefined')document.write(unescape("%3Cscript src='https://alcdn.msftauth.net/lib/1.1.3/js/msal.js' type='text/javascript' %3E%3C/script%3E"));
</script>

Note: This method of using document.write may be blocked in certain browsers in certain situations. More information can be found here.

Notes:

  • Subresource Integrity (SRI) attributes are optional in the script tag.
  • All hashes are unique to the version of MSAL. You can find the previous hashes on the MSAL Wiki page.
  • We recommend including the SRI Hash with all script tags when using msal.js or msal.min.js (including when using a third-party CDN). When providing the SRI Hash, you must also provide the crossorigin="anonymous" field in the same tag.

Internet Explorer does not have native Promise support, and so you will need to include a polyfill for promises such as bluebird.

<!-- IE support: add promises polyfill before msal.js  -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/bluebird/3.3.4/bluebird.min.js"></script>

See here for more details on supported browsers and known compatability issues.

What To Expect From This Library

Msal support on Javascript is a collection of libraries. msal-core or just simply msal, is the framework agnostic core library. Once our core 1.x+ is stabilized, we are going to bring our msal-angular library with the latest 1.x improvements. We are planning to deprecate support for msal-angularjs based on usage trends of the framework and the library indicating increased adoption of Angular 2+ instead of Angular 1x. After our current libraries are up to standards, we will begin balancing new feature requests, with new platforms such as react and node.js.

Our goal is to communicate extremely well with the community and to take their opinions into account. We would like to get to a monthly minor release schedule, with patches comming as often as needed. The level of communication, planning, and granularity we want to get to will be a work in progress.

Please check our roadmap to see what we are working on and what we are tracking next.

OAuth 2.0 and the Implicit Flow

Msal implments the Implicit Grant Flow, as defined by the OAuth 2.0 protocol and is OpenID compliant.

Our goal is that the library abstracts enough of the protocol away so that you can get plug and play authentication, but it is important to know and understand the implicit flow from a security perspective. The implicit flow runs in the context of a web browser which cannot manage client secrets securely. It is optimized for single page apps and has one less hop between client and server so tokens are returned directly to the browser. These aspects make it naturally less secure. These security concerns are mitigated per standard practices such as- use of short lived tokens (and so no refresh tokens are returned), the library requiring a registered redirect URI for the app, library matching the request and response with a unique nonce and state parameter.

Cache Storage

We offer two methods of storage for Msal, localStorage and sessionStorage. Our recommendation is to use sessionStorage because it is more secure in storing tokens that are acquired by your users, but localStorage will give you Single Sign On accross tabs and user sessions. We encourge you to explore the options and make the best decision for your application.

forceRefresh to skip cache

If you would like to skip a cached token and go to the server, please pass in the boolean forceRefresh into the AuthenticationParameters object used to make a login / token request. WARNING: This should not be used by default, because of the performance impact on your application. Relying on the cache will give your users a better experience, and skipping it should only be used in scenarios where you know the current cached data does not have up to date information. Example: Admin tool to add roles to a user that needs to get a new token with updates roles.

Usage

The example below walks you through how to login a user and acquire a token to be used for Microsoft's Graph Api.

Prerequisite

Before using MSAL.js you will need to register an application in Azure AD to get a valid clientId for configuration, and to register the routes that your app will accept redirect traffic on.

1. Instantiate the UserAgentApplication

UserAgentApplication can be configured with a variety of different options, detailed in our Wiki, but the only required parameter is auth.clientId.

After instantiating your instance, if you plan on using a redirect flow (loginRedirect and acquireTokenRedirect), you must register a callback handlers using handleRedirectCallback(authCallback) where authCallback = function(AuthError, AuthResponse). The callback function is called after the authentication request is completed either successfully or with a failure. This is not required for the popup flows since they return promises.

    import * as Msal from "msal";
    // if using cdn version, 'Msal' will be available in the global scope

    const msalConfig = {
        auth: {
            clientId: 'your_client_id'
        }
    };

    const msalInstance = new Msal.UserAgentApplication(msalConfig);

    msalInstance.handleRedirectCallback((error, response) => {
        // handle redirect response or error
    });

For details on the configuration options, read Initializing client applications with MSAL.js.

2. Login the user

Your app must login the user with either the loginPopup or the loginRedirect method to establish user context.

When the login methods are called and the authentication of the user is completed by the Azure AD service, an id token is returned which is used to identify the user with some basic information.

When you login a user, you can pass in scopes that the user can pre consent to on login, however this is not required. Please note that consenting to scopes on login, does not return an access_token for these scopes, but gives you the opportunity to obtain a token silently with these scopes passed in, with no further interaction from the user.

It is best practice to only request scopes you need when you need them, a concept called dynamic consent. While this can create more interactive consent for users in your application, it also reduces drop-off from users that may be uneasy granting a large list of permissions for features they are not yet using.

AAD will only allow you to get consent for 3 resources at a time, although you can request many scopes within a resource. When the user makes a login request, you can pass in multiple resources and their corresponding scopes because AAD issues an idToken pre consenting those scopes. However acquireToken calls are valid only for one resource / multiple scopes. If you need to access multiple resources, please make separate acquireToken calls per resource.

   var loginRequest = {
       scopes: ["user.read", "mail.send"] // optional Array<string>
   };

    msalInstance.loginPopup(loginRequest)
        .then(response => {
            // handle response
        })
        .catch(err => {
            // handle error
        });

3. Get an access token to call an API

In MSAL, you can get access tokens for the APIs your app needs to call using the acquireTokenSilent method which makes a silent request(without prompting the user with UI) to Azure AD to obtain an access token. The Azure AD service then returns an access token containing the user consented scopes to allow your app to securely call the API.

You can use acquireTokenRedirect or acquireTokenPopup to initiate interactive requests, although, it is best practice to only show interactive experiences if you are unable to obtain a token silently due to interaction required errors. If you are using an interactive token call, it must match the login method used in your application. (loginPopup=> acquireTokenPopup, loginRedirect => acquireTokenRedirect).

If the acquireTokenSilent call fails with an error of type InteractionRequiredAuthError you will need to initiate an interactive request. This could happen for many reasons including scopes that have been revoked, expired tokens, or password changes.

acquireTokenSilent will look for a valid token in the cache, and if it is close to expiring or does not exist, will automatically try to refresh it for you.

See Request and Response Data Types for reference.

    // if the user is already logged in you can acquire a token
    if (msalInstance.getAccount()) {
        var tokenRequest = {
            scopes: ["user.read", "mail.send"]
        };
        msalInstance.acquireTokenSilent(tokenRequest)
            .then(response => {
                // get access token from response
                // response.accessToken
            })
            .catch(err => {
                // could also check if err instance of InteractionRequiredAuthError if you can import the class.
                if (err.name === "InteractionRequiredAuthError") {
                    return msalInstance.acquireTokenPopup(tokenRequest)
                        .then(response => {
                            // get access token from response
                            // response.accessToken
                        })
                        .catch(err => {
                            // handle error
                        });
                }
            });
    } else {
        // user is not logged in, you will need to log them in to acquire a token
    }

4. Use the token as a bearer in an HTTP request to call the Microsoft Graph or a Web API

    var headers = new Headers();
    var bearer = "Bearer " + token;
    headers.append("Authorization", bearer);
    var options = {
         method: "GET",
         headers: headers
    };
    var graphEndpoint = "https://graph.microsoft.com/v1.0/me";

    fetch(graphEndpoint, options)
        .then(resp => {
             //do something with response
        });

You can learn further details about MSAL.js functionality documented in the MSAL Wiki and find complete code samples.

Security Reporting

If you find a security issue with our libraries or services please report it to secure@microsoft.com with as much detail as possible. Your submission may be eligible for a bounty through the Microsoft Bounty program. Please do not post security issues to GitHub Issues or any other public site. We will contact you shortly upon receiving the information. We encourage you to get notifications of when security incidents occur by visiting this page and subscribing to Security Advisory Alerts.

License

Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT License (the "License");

We Value and Adhere to the Microsoft Open Source Code of Conduct

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.

changelog

1.1.3

  • Introduction of Azure Pipelines (#912)
  • Removing uuid library that is incompatible with ES6 modules (#878)
  • Update lerna dependency to resolve to safe version of lodash (#910)
  • Refactoring (#886)

1.1.2

  • Minor fixes to docs and samples (#859, #857, #757)
  • Fixes issue where scope object was being mutated (#875)
  • Fixes issue where token type wasn't being set correctly when renewing id token (#873)
  • Refactoring (#805, #806)

1.1.1

  • Fixed an issue where cacheLocation was no longer accepting string values (#862)

1.1.0

  • Core

    • idTokenClaims has been added to the API surface in AuthResponse and Account (#804)
    • Added forceRefresh parameter to request object, which will force acquireTokenSilent to fetch tokens from cache (#823)
    • Added scaffolding for telemetry (#737, #802, #840)
      • The full telemetry feature will be available in a future release
    • Fixed issue where server was sending a null errorDesc which caused a problem in error response processing (#811)
      • MSAL.js now throws a ServerError when the user chooses not to grant consent or clicks back in multi-account selection
    • Updating the comments in Configuration.ts to show the correct parameters (#780)
    • CacheLocation changed to enum to avoid type widening (#851)
    • MSAL.js sends log messages when removing sid and login_hint from extraQueryParameters (#781)
    • Improved formatting and docs in README and issue template (#789, #793, #795)
    • Fixed bug where expiresIn was not calculating correctly (#799)
    • Fixed issue where errors did not display for failed redirect login attempts in the React sample. (#820)
    • Fixed npm audit security warnings (#828)
    • Updated references to cloud.microsoft.com since domain no longer works properly (#830)
    • AcquireToken APIs throw empty request errors when given null or empty request objects (#831)
    • Switched from tslint to eslint for linting configuration (#849)
    • Removed dependency on base64-js package due to incompatability with ES modules, removed unused encoding functions (#826)
    • Refactoring (#792)
  • Other Updates

    • Fixed issues with Angular and Angular-JS samples (#813)

1.0.2

  • Fixed broken link in docs for error message and module docs (#731)
  • Fix typo in README (#743, #749)
  • Update lerna version (#748)
  • Fix Interaction_Required error to throw on all interaction_required error types (#753)
  • Added a react sample (#727)
  • Fix for bug preventing asynchronous acquireTokenSilent calls (#768)

1.0.1

  • Fixed bug where navigateToLoginRequestURL = false would cause callback to not fire (#696)
  • Fixed bug where null request object would cause null pointer exception for state parameter (#698)
  • All msal related cache items are deleted on logout (#709)
  • Fixed bug where "user cancelled" error in acquireTokenPopup would not throw (#707)
  • Logout endpoint now uses the given EndSessionEndpoint from the oauth discovery endpoint response (#716)
  • Now uses base64.js instead of window.atob (#712)
  • Fixed bug where login_hint was added if sid was already populated. (#700)

1.0.0

1.0.0-preview.5

  • Error First Callbacks PR #658
  • Claims Request Support PR #664
  • loginInProgress() as a public function #671
  • 'state' moved from config to request, returning the user state if passed stripping the GUID #674 #679 #681
  • cache cleanup of all values (keys cleanup will be done in next release) #675
  • made loading iFrame timeout in silent calls configurable, 'navigateFrameWait' #676
  • readme updated with latest code patterns #672

1.0.0-preview.4

Add dist back into npm package as a valid build artifact

1.0.0-preview.3

Add a hook in package.json to build msal js before npm publish to have the libraries up to date

1.0.0-preview.2

Bug Fixes

  • Fix for the multiple_authorities issue seen due to non Canonalized authority storage in cache PR #656
  • Populate scopes from cache for getCachedToken Response object PR #657.
  • ES6 modules are added back into the npm #654

1.0.0-preview.1

Bug Fixes

  • Fix dependencies for non typescript environments

1.0.0-preview.0

New Features (Breaking Changes)

As announced earlier @https://github.com/AzureAD/microsoft-authentication-library-for-js/wiki/MSAL.js-1.0.0-preview-changes we are excited to announce the preview release.

Release notes:

Configuration

  • Initialization of the MSAL JS library – We introduced a ‘Configuration’ object that can be sent through the constructor of UserAgentApplication() class.
Configuration datatype :
    // make CacheStorage a fixed type to limit it to specific inputs
    type storage = "localStorage" | "sessionStorage";

    // Protocol Support
    export type AuthOptions = {
        clientId: string;
        authority?: string;
        validateAuthority?: boolean;
        redirectUri?: string | (() => string);
        postLogoutRedirectUri?: string | (() => string);
        state?: string;
        navigateToLoginRequestUrl?: boolean;
    };

    // Cache Support
    export type CacheOptions = {
        cacheLocation?: CacheLocation;
        storeAuthStateInCookie?: boolean;
    };

    // Library support
    export type SystemOptions = {
        logger?: Logger;
        loadFrameTimeout?: number;
        tokenRenewalOffsetSeconds?: number;
    };

    // Developer App Environment Support
    export type FrameworkOptions = {
        isAngular?: boolean;
        unprotectedResources?: Array<string>;
        protectedResourceMap?: Map<string, Array<string>>;
    };

    // Configuration Object
    export type Configuration = {
        auth: AuthOptions,
        cache?: CacheOptions,
        system?: SystemOptions,
        framework?: FrameworkOptions
    };
Example Config object:
    var config = {
        auth: {
            clientId: applicationConfig.clientID,
            authority: applicationConfig.authority,
            validateAuthority: true
        },
        cache: {
            cacheLocation: "localStorage",
            storeAuthStateInCookie: true
        },
        system: {
            logger: devLogger
        }
    };
Before (<= 0.2.4)
    // initialize the MSAL JS configuration options
    var myMSALObj = new Msal.UserAgentApplication(
        applicationConfig.clientID,
        applicationConfig.authority,
        acquireTokenRedirectCallBack,
        {storeAuthStateInCookie: true, cacheLocation: "localStorage"}
    );
After (>= 1.0.0-preview.0)
    // initialize the configuration object
    var config = {
        auth: {
            clientId: applicationConfig.clientID,
            authority: applicationConfig.authority,
            validateAuthority: true
        },
        cache: {
            cacheLocation: "localStorage",
            storeAuthStateInCookie: true
        }
    };

// initialize the MSAL JS with a configuration object
var myMSALObj = new Msal.UserAgentApplication(config);

// register redirect call backs : for Success and Error
myMSALObj.handleRedirectCallbacks(acquireTokenRedirectCallBack, acquireTokenErrorRedirectCallBack);

Request Object

  • ‘Request’ object is introduced for all login/accessToken calls, this replaces previous overloading of login/acquireToken calls.
  • Users can choose to pass optional parameters to finetune their requests for authentication and authorization.
  • 'User' object is now replaced with 'Account' => the public API getUser() is now getAccount() with more enhanced data.
Request Object datatype
    export type QPDict = {[key: string]: string};

    // Request type
    export type AuthenticationParameters = {
        scopes?: Array<string>;
        extraScopesToConsent?: Array<string>;
        prompt?: string;
        extraQueryParameters?: QPDict;
        claimsRequest?: null;
        authority?: string;
        correlationId?: string;
        account?: Account;
        sid?: string;
        loginHint?: string;
    };

    // Account Class
    export class Account {

        accountIdentifier: string;
        homeAccountIdentifier: string;
        userName: string;
        name: string;
        idToken: Object;
        sid: string;
        environment: string;

        ....
    }
Before (<= 0.2.4)
    // login request
    loginPopup(applicationConfig.graphScopes);
After (>= 1.0.0-preview.0)

    let loginRequest = {
        scopes: applicationConfig.graphScopes
    };

    loginPopup(loginRequest).then(function (loginResponse) {
        //Login Success
    }).catch(function (error) {
        console.log(error);
    });

Response Object

  • ‘Response’ and 'Error' objects are introduced for server responses and app failures
    • For ‘Redirect’ usecases, explicit success and failure call backs should be passed to ‘handleRedirectCallbacks()’.
    • For 'Popup' and 'Silent' usecases, a promise pattern i.e.,' .then and .catch' can be used.
Response Object datatype
    export type AuthResponse = {
        uniqueId: string;
        tenantId: string;
        tokenType: string;
        idToken: IdToken;
        accessToken: string;
        scopes: Array<string>;
        expiresOn: Date;
        account: Account;
        accountState: string;
    };
Error Object datatype
  • Note: Error objects are better classified and messaged with this release. Detailed documentation for Error Handling will be added soon.
    export class AuthError extends Error {
        errorCode: string;
        errorMessage: string;
        ...
    }
Before (<= 0.2.4)

    // Login using Popup
    function signIn() {
        myMSALObj.loginPopup(applicationConfig.graphScopes).then(function (idToken) { ... }
    }

    // Request for Access Token
    myMSALObj.acquireTokenSilent(applicationConfig.graphScopes).then(function (accessToken) {
        callMSGraph(applicationConfig.graphEndpoint, accessToken, graphAPICallback);
    }, function (error) {
        console.log(error);
        // Call acquireTokenPopup (popup window) in case of acquireTokenSilent failure due to consent or interaction required ONLY
        if (error.indexOf("consent_required") !== -1 || error.indexOf("interaction_required") !== -1 || error.indexOf("login_required") !== -1) {
            myMSALObj.acquireTokenPopup(applicationConfig.graphScopes).then(function (accessToken) {
                callMSGraph(applicationConfig.graphEndpoint, accessToken, graphAPICallback);
            }, function (error) {
                console.log(error);
            });
        }
    });
After (>= 1.0.0-preview.0)
    myMSALObj = new UserAgentApplication(config);

    // Login
    loginPopup(loginRequest).then(function(response) {
        var idToken = response.idToken;
        // etc.
    }).catch(function(error) {
        // Catches any rejects thrown by loginPopup. Also catches errors thrown the above 'then' block
        if (error.ClientConfigurationError) {
            // Error with configuration, please check your parameters.
        } else if (error instanceof ClientAuthError) {
            // authentication could not be completed due to protocol error, browser error or already in progress
        } else if (error instanceof ServerError) {
            // server may be temporarily unavailable, or the request that was sent was invalid or not acceptable. Please check error returned and retry.
        } else {
            // Unexpected error, console.log and report on Github or StackOverflow
        }
    });

    // access token
    acquireTokenPopup(tokenRequest).then(function(response) {
        var idToken = response.idToken;
        var accessToken = response.accessToken;
        // etc.
    }).catch(function(error) {
        // Catches any rejects thrown by loginPopup. Also catches errors thrown the above 'then' block
        if (error.ClientConfigurationError) {
            // Error with configuration, please check your parameters.
        } else if (error instanceof ClientAuthError) {
            // authentication could not be completed due to protocol error, browser error or already in progress
        } else if (error instanceof ServerError) {
            // server may be temporarily unavailable, or the request that was sent was invalid or not acceptable. Please check error returned and retry.
        } else {
            // Unexpected error, console.log and report on Github or StackOverflow
        }
    });

We will follow up with a detailed blog post and a Quickstart Application soon with these changes.

0.2.4

New Features

  • Unified Cache - This is to support migration from ADAL.js to MSAL.js. If your app is currently using ADAL.js and if user already has an existing session there, when your app migrates to MSAL.js, MSAL.js will do a Silent login.
  • Removal of prompt-select account - Removes prompt parameter from interactive login and acquireToken requests. acquireTokenSilent will continue to pass prompt=none.
  • End-to-end testing for msal-core
  • Support for redirect URI as a function

0.2.3

New Features

  • Single Sign on
  • IE and edge bug fix if navigateToLoginRequestUrl=false (cookies not deleted)
  • IE and edge bug fix for login_popup (state mismatch)
  • User state not passed to callback if navigateToLoginrequestUrl = false
  • Added sample app for single sign on

0.2.2

New Features

0.2.1

New Features

0.2.0

New Features

Moved npmjs package to @azure/msal

0.1.9

New Features

0.1.7

New Features

0.1.6

New Features

0.1.5

Breaking Changes

  • The constructor function in Msal is no longer asynchronous. To use the instance of userAgentApplication in the callback function passed in the constructor, use "this" in the calback function scope. Please see below:
    var userAgentApplication = new Msal.UserAgentApplication(applicationConfig.clientID, null, authCallback);
          function authCallback(errorDesc, token, error, tokenType) {
                     console.log(userAgentApplication) //this will print undefined, use this instead
                     var self  = this// self is instance of userAgentApplication
             }

New Features

  • By default, msal tries to take you back to the loginStartPage after successful authentication. To disable this setting, you can pass navigateToLoginRequestUrl:false in the options object in the constructor. In that case, msal will just set the url hash to null and call the provided callback, thereby avoiding an additional reload. Please see snippet below:
    var userAgentApplication = new Msal.UserAgentApplication(applicationConfig.clientID, null, authCallback, { navigateToLoginRequestUrl:false });
  • The idToken object is now added as a property on user object in msal which can be used to query claims and the User class itself is exported under the global namespace.
  • loadFrameTimout(msec) is now configurable by setting it to a value in the options object passed to the userAgentApplication contructor. The default timeout is 6000 msec. Please see the snippet below to change it:
    var userAgentApplication = new Msal.UserAgentApplication(applicationConfig.clientID, null, authCallback, { loadFrameTimout:10000 });

0.1.4-beta

Bug Fixes

  • Test version

0.1.3

Bug Fixes

  • Added ability to import msal as es-5 or es-6 module.
  • Added webpack to create a umd bundle with a global variable Msal exported to the window object.
  • Fixed bug related to browser refresh.
  • Set user object from cache if available before every acquireToken request.
  • Enable logging by passing a logger in the constructor function.

0.1.2

Bug Fixes

  • Fixed bug with renewal of id_token.
  • Added support for multiple asynchronous acquireToken requests.
  • Added "user_cancelled" event for popup window.

0.1.1

Bug Fixes

  • Fix browser specific issues.

0.1.0

Preview Release