From db9bb6baceacd6f116fc0b31b5582fd2b711e20a Mon Sep 17 00:00:00 2001 From: naka Date: Thu, 13 Jun 2019 23:41:03 +0900 Subject: [PATCH] will change variant name to correctly. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 93ceacad2..197fdc5f3 100644 --- a/README.md +++ b/README.md @@ -96,7 +96,7 @@ const graphScopes = ["user.read", "mail.send"]; // An array of graph scopes // Initialize the MSAL @see https://github.com/AzureAD/microsoft-authentication-library-for-js/wiki/MSAL-basics#initialization-of-msal const userAgentApplication = new UserAgentApplication(clientId, undefined, callback, options); -const authProvider = new MSALAuthenticationProvider(userAgentApplication, scopes); +const authProvider = new MSALAuthenticationProvider(userAgentApplication, graphScopes); ``` User can integrate own preferred authentication library by implementing `IAuthenticationProvider` interface. Refer implementing [Custom Authentication Provider](./docs/CustomAuthenticationProvider.md).