Skip to content
This repository was archived by the owner on May 3, 2024. It is now read-only.

Commit 1aa9650

Browse files
committed
update folder path in readme
1 parent 140930b commit 1aa9650

File tree

3 files changed

+4
-7
lines changed

3 files changed

+4
-7
lines changed

2-Authorization-I/1-call-graph/AppCreationScripts/sample.json

+1-4
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,7 @@
2121
"HomePage": "http://localhost:3000/",
2222
"ReplyUrls": "http://localhost:3000/, http://localhost:3000/redirect.html",
2323
"Audience": "AzureADMyOrg",
24-
"Sample": {
25-
"SampleSubPath": "2-Authorization-I\\1-call-graph",
26-
"ProjectDirectory": "\\SPA"
27-
},
24+
"SampleSubPath": "2-Authorization-I\\1-call-graph\\SPA",
2825
"RequiredResourcesAccess": [
2926
{
3027
"Resource": "Microsoft Graph",

2-Authorization-I/1-call-graph/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ or download and extract the repository *.zip* file.
8282

8383
```console
8484
cd ms-identity-javascript-react-tutorial
85-
cd 2-Authorization-I\1-call-graph
85+
cd 2-Authorization-I\1-call-graph\SPA
8686
npm install
8787
```
8888

@@ -166,7 +166,7 @@ Open the project in your IDE (like Visual Studio or Visual Studio Code) to confi
166166
From your shell or command line, execute the following commands:
167167
168168
```console
169-
cd 2-Authorization-I/1-call-graph/SPA
169+
cd 2-Authorization-I\1-call-graph\SPA
170170
npm start
171171
```
172172

2-Authorization-I/1-call-graph/SPA/src/authConfig.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ export const msalConfig = {
5858
* https://docs.microsoft.com/en-us/azure/active-directory/develop/v2-permissions-and-consent#openid-connect-scopes
5959
*/
6060
export const loginRequest = {
61-
scopes: ['User.Read']
61+
scopes: ['User.Read', 'Contacts.Read'],
6262
};
6363

6464
/**

0 commit comments

Comments
 (0)