@vonrehberg.consulting/mgt-msal-provider
TypeScript icon, indicating that this package has built-in type declarations

2.10.0 • Public • Published

Microsoft Graph Toolkit MSAL Provider

npm

⚠️⚠️⚠️ This package is no longer receiving new features and will only receive critical bug and security fixes. All new applications should use @vonrehberg.consulting/mgt-msal2-provider instead. ⚠️⚠️⚠️

The @vonrehberg.consulting/mgt-msal-provider package exposes the MsalProvider class which uses MSAL.js to sign in users and acquire tokens to use with Microsoft Graph via the Implicit Grant Flow.

For authentication based on the more secure OAuth 2.0 Authorization Code Flow with PKCE, please use the @vonrehberg.consulting/mgt-msal2-provider instead.

See docs for full documentation of the MsalProvider

The Microsoft Graph Toolkit (mgt) library is a collection of authentication providers and UI components powered by Microsoft Graph.

Usage

  1. Install the packages

    npm install @vonrehberg.consulting/mgt-element @vonrehberg.consulting/mgt-msal-provider
  2. Initialize the provider in code

    import {Providers} from '@vonrehberg.consulting/mgt-element';
    import {MsalProvider} from '@vonrehberg.consulting/mgt-msal-provider';
    
    // initialize the auth provider globally
    Providers.globalProvider = new MsalProvider({
      clientId: 'clientId',
      scopes?: string[];
      authority?: string;
      redirectUri?: string;
      loginType?: LoginType; // LoginType.Popup or LoginType.Redirect (redirect is default)
      loginHint?: string
      options?: Configuration; // msal js Configuration object
    });
  3. Alternatively, initialize the provider in html (only client-id is required):

    <script type="module" src="../node_modules/@vonrehberg.consulting/mgt-msal-provider/dist/es6/index.js" />
    
    <mgt-msal-provider client-id="<YOUR_CLIENT_ID>"
                      login-type="redirect/popup" 
                      scopes="user.read,people.read" 
                      redirect-uri="https://my.redirect/uri" 
                      authority=""> 
    </mgt-msal-provider> 

See provider usage documentation to learn about how to use the providers with the mgt components, to sign in/sign out, get access tokens, call Microsoft Graph, and more.

Sea also

Package Sidebar

Install

npm i @vonrehberg.consulting/mgt-msal-provider

Weekly Downloads

1

Version

2.10.0

License

MIT

Unpacked Size

149 kB

Total Files

18

Last publish

Collaborators

  • vonrehberg.consulting