Skip to content

Commit 93fc75e

Browse files
authored
Fix code snippet typo, add sample link
Fix code snippet typo, add sample link ------- cc: @knicholasa
1 parent bea1a04 commit 93fc75e

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

articles/active-directory/develop/app-resilience-continuous-access-evaluation.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -137,8 +137,8 @@ Your app would then use the claims challenge to acquire a new access token for t
137137
```javascript
138138
const tokenRequest = {
139139
claims: window.atob(claimsChallenge), // decode the base64 string
140-
scopes: ['User.Read']
141-
account: msalInstance.getActiveAccount();
140+
scopes: ['User.Read'],
141+
account: msalInstance.getActiveAccount()
142142
};
143143

144144
let tokenResponse;
@@ -173,8 +173,9 @@ You can test your application by signing in a user and then using the Azure port
173173

174174
## Code samples
175175

176-
- [React single-page application using MSAL React to sign-in users against Azure Active Directory](https://github.com/Azure-Samples/ms-identity-javascript-react-tutorial/tree/main/2-Authorization-I/1-call-graph)
177-
- [Enable your ASP.NET Core web app to sign in users and call Microsoft Graph with the Microsoft identity platform](https://github.com/Azure-Samples/active-directory-aspnetcore-webapp-openidconnect-v2/tree/master/2-WebApp-graph-user/2-1-Call-MSGraph)
176+
- [Enable your Angular single-page application to sign in users and call Microsoft Graph](https://github.com/Azure-Samples/ms-identity-javascript-angular-tutorial/tree/main/2-Authorization-I/1-call-graph)
177+
- [Enable your React single-page application to sign in users and call Microsoft Graph](https://github.com/Azure-Samples/ms-identity-javascript-react-tutorial/tree/main/2-Authorization-I/1-call-graph)
178+
- [Enable your ASP.NET Core web app to sign in users and call Microsoft Graph](https://github.com/Azure-Samples/active-directory-aspnetcore-webapp-openidconnect-v2/tree/master/2-WebApp-graph-user/2-1-Call-MSGraph)
178179
179180
## Next steps
180181

0 commit comments

Comments
 (0)