File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
articles/active-directory/develop Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -137,8 +137,8 @@ Your app would then use the claims challenge to acquire a new access token for t
137
137
```javascript
138
138
const tokenRequest = {
139
139
claims : window .atob (claimsChallenge ), // decode the base64 string
140
- scopes : ['User.Read' ]
141
- account : msalInstance .getActiveAccount ();
140
+ scopes : ['User.Read' ],
141
+ account : msalInstance .getActiveAccount ()
142
142
};
143
143
144
144
let tokenResponse ;
@@ -173,8 +173,9 @@ You can test your application by signing in a user and then using the Azure port
173
173
174
174
## Code samples
175
175
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)
178
179
179
180
## Next steps
180
181
You can’t perform that action at this time.
0 commit comments