Skip to content

Commit a5b65cb

Browse files
committed
review changes
1 parent 8436107 commit a5b65cb

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

7-AdvancedScenarios/2-call-api-pop/AppCreationScripts/Configure.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ Function ConfigureApplications
200200
Write-Host "Creating the AAD application (msal-dotnet-api)"
201201
# create the application
202202
$serviceAadApplication = New-AzureADApplication -DisplayName "msal-dotnet-api" `
203-
-HomePage "https://localhost::44372/api/todolist" `
203+
-HomePage "https://localhost:44372/api/todolist" `
204204
-PublicClient $False
205205

206206
$serviceIdentifierUri = 'api://'+$serviceAadApplication.AppId

7-AdvancedScenarios/2-call-api-pop/AppCreationScripts/sample.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"Name": "msal-dotnet-api",
1414
"Kind": "WebApi",
1515
"Audience": "AzureADMyOrg",
16-
"HomePage": "https://localhost::44372/api/todolist"
16+
"HomePage": "https://localhost:44372/api/todolist"
1717
},
1818
{
1919
"Id": "client",

7-AdvancedScenarios/2-call-api-pop/README.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ or download and extract the repository .zip file.
5858

5959
```console
6060
cd ms-identity-javascript-angular-tutorial
61-
cd 3-Authorization-II/1-call-api/API/TodoListAPI
61+
cd 7-AdvancedScenarios/2-call-api-pop/API/TodoListAPI
6262
dotnet restore
6363
```
6464

@@ -201,14 +201,17 @@ Using a command line interface such as VS Code integrated terminal, locate the a
201201
In a separate console window, execute the following commands:
202202

203203
```console
204-
cd API
204+
cd API/TodoListAPI
205205
dotnet run
206206
```
207207

208208
## Explore the sample
209209

210-
> Explain how to explore the sample.
211-
> Insert a screenshot of the client application.
210+
1. Open your browser and navigate to `http://localhost:4200`.
211+
2. Sign-in using the button on the top-right corner.
212+
3. Select the **TodoList** button on the navigation bar to access your todo list.
213+
214+
![Screenshot](./ReadmeFiles/screenshot.png)
212215

213216
> :information_source: Did the sample not work for you as expected? Then please reach out to us using the [GitHub Issues](../../../../issues) page.
214217

0 commit comments

Comments
 (0)