Skip to content

Commit be732c6

Browse files
committed
update angular sample client id and updated msal-browser
1 parent ee711f3 commit be732c6

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
lines changed

packages/providers/mgt-msal2-provider/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"dependencies": {
4242
"@microsoft/mgt-element": "*",
4343
"@microsoft/microsoft-graph-client": "^2.2.1",
44-
"@azure/msal-browser": "^2.14.2"
44+
"@azure/msal-browser": "^2.16.1"
4545
},
4646
"publishConfig": {
4747
"directory": "dist"

packages/providers/mgt-teams-msal2-provider/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
"@microsoft/mgt-element": "*",
4646
"@microsoft/mgt-msal2-provider": "*",
4747
"@microsoft/microsoft-graph-client": "^2.2.1",
48-
"@azure/msal-browser": "^2.14.2"
48+
"@azure/msal-browser": "^2.16.1"
4949
},
5050
"publishConfig": {
5151
"directory": "dist"

samples/angular-app/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
"@angular/platform-browser": "~9.1.6",
2020
"@angular/platform-browser-dynamic": "~9.1.6",
2121
"@angular/router": "~9.1.6",
22-
"@azure/msal-angular": "^2.0.0",
23-
"@azure/msal-browser": "^2.14.2",
22+
"@azure/msal-angular": "^2.0.2",
23+
"@azure/msal-browser": "^2.16.1",
2424
"@microsoft/mgt": "*",
2525
"rxjs": "~6.5.4",
2626
"tslib": "^1.10.0",

samples/angular-app/src/environments/environment.msal.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const isIE = window.navigator.userAgent.indexOf('MSIE ') > -1 || window.navigato
77

88
export const MsalConfig: Configuration = {
99
auth: {
10-
clientId: 'a974dfa0-9f57-49b9-95db-90f04ce2111a',
10+
clientId: '2dfea037-938a-4ed8-9b35-c05708a1b241',
1111
authority: 'https://login.microsoftonline.com/common/',
1212
redirectUri: 'http://localhost:4200/',
1313
postLogoutRedirectUri: 'http://localhost:4200/',
@@ -23,7 +23,6 @@ const consentScopes = ['user.read', 'openid', 'profile'];
2323
const protectedResourceMap = new Map<string, Array<string>>();
2424
protectedResourceMap.set('https://graph.microsoft.com/v1.0/', consentScopes);
2525

26-
2726
export const MsalInterceptorConfig: MsalInterceptorConfiguration = {
2827
interactionType: !isIE ? InteractionType.Popup : InteractionType.Redirect,
2928
protectedResourceMap

0 commit comments

Comments
 (0)