2.3.0-preview.5b9fd62 • Published 5 years ago

@microsoft/mgt-msal-provider v2.3.0-preview.5b9fd62

Weekly downloads
1,325
License
MIT
Repository
github
Last release
5 years ago

Microsoft Graph Toolkit MSAL Provider

npm

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

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

See docs for full documentation of the MsalProvider

Usage

  1. Install the packages

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

    import {Providers} from '@microsoft/mgt-element';
    import {MsalProvider} from '@microsoft/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/@microsoft/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

2.11.2

3 years ago

2.11.0

3 years ago

2.11.1

3 years ago

3.0.0-preview.2

3 years ago

2.10.1

3 years ago

3.0.0-preview.1

3 years ago

2.10.0

3 years ago

2.9.2

3 years ago

2.9.1

3 years ago

2.8.0

3 years ago

2.9.0

3 years ago

2.7.0

3 years ago

2.7.1

3 years ago

2.6.2

4 years ago

2.6.1

4 years ago

2.6.0

4 years ago

2.5.0

4 years ago

2.5.2

4 years ago

2.5.1

4 years ago

2.4.0

4 years ago

2.3.2

4 years ago

2.3.1

4 years ago

2.3.0

5 years ago

2.2.1

5 years ago

2.2.0

5 years ago

2.1.0

5 years ago

2.0.1

5 years ago

2.0.0

5 years ago

2.0.0-rc.1

5 years ago

2.0.0-preview.9

5 years ago

2.0.0-preview.8

5 years ago

2.0.0-preview.7

5 years ago