Skip to content

Commit f914352

Browse files
authored
Merge pull request #232587 from cilwerner/release-msid-gtd-tutorial-web-app
[GTD] FINAL STAGING: Release msid gtd tutorial web app
2 parents a1ee602 + 115101d commit f914352

16 files changed

+391
-1580
lines changed

.openpublishing.redirection.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22048,6 +22048,16 @@
2204822048
"redirect_url": "/azure/active-directory/develop/web-app-quickstart?pivots=devlang-nodejs-msal",
2204922049
"redirect_document_id": false
2205022050
},
22051+
{
22052+
"source_path_from_root": "/articles/active-directory/develop/tutorial-v2-asp-webapp.md",
22053+
"redirect_url": "/azure/active-directory/develop/web-app-tutorial-01-register-application",
22054+
"redirect_document_id": false
22055+
},
22056+
{
22057+
"source_path_from_root": "/articles/active-directory/develop/tutorial-v2-react.md",
22058+
"redirect_url": "/azure/active-directory/develop/single-page-app-tutorial-01-register-app",
22059+
"redirect_document_id": false
22060+
},
2205122061
{
2205222062
"source_path_from_root": "/articles/networking/azure-orbital-overview.md",
2205322063
"redirect_url": "/azure/orbital/overview",

articles/active-directory/develop/TOC.yml

Lines changed: 242 additions & 318 deletions
Large diffs are not rendered by default.

articles/active-directory/develop/howto-call-a-web-api-with-curl.md

Lines changed: 21 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ This article shows you how to call a protected ASP.NET Core web API using Client
3636
- Application developer
3737
- Cloud application administrator
3838
- [Download and install cURL](https://curl.se/download.html) on your workstation computer.
39+
- A minimum requirement of [.NET Core 6.0 SDK](https://dotnet.microsoft.com/download/dotnet).
3940

4041
::: zone-end
4142

@@ -184,8 +185,16 @@ You may also notice the **User.Read** permission for the Microsoft Graph API. Th
184185

185186
1. Execute the following command to start the app:
186187

188+
### [.NET 6.0](#tab/dotnet6)
189+
190+
```bash
191+
dotnet run
192+
```
193+
194+
### [.NET 7.0](#tab/dotnet7)
195+
187196
```bash
188-
dotnet run
197+
dotnet run --launch-profile https
189198
```
190199

191200
1. An output similar to the following will appear. Record the port number in the `https://localhost:{port}` URL.
@@ -207,22 +216,22 @@ You may also notice the **User.Read** permission for the Microsoft Graph API. Th
207216

208217
1. Open a new terminal window and navigate to the folder where the web API project is located.
209218

210-
### [.NET 6.0](#tab/dotnet6)
219+
### [.NET 6.0](#tab/dotnet6)
211220

212-
1. Execute the following command to start the app:
221+
1. Execute the following command to start the app:
213222

214-
```bash
215-
dotnet run
216-
```
223+
```bash
224+
dotnet run
225+
```
217226

218-
### [.NET 7.0](#tab/dotnet7)
227+
### [.NET 7.0](#tab/dotnet7)
219228

220-
1. Execute the following command to start the app on the `https` profile:
229+
1. Execute the following command to start the app on the `https` profile:
221230

222-
```bash
223-
dotnet run -launch-profile https`
224-
```
225-
---
231+
```bash
232+
dotnet run --launch-profile https
233+
```
234+
---
226235

227236
1. An output similar to the following will appear. Record the port number in the `https://localhost:{port}` URL.
228237

articles/active-directory/develop/howto-call-a-web-api-with-postman.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ This article shows you how to call a protected ASP.NET Core web API using [Postm
3636
- Application developer
3737
- Cloud application administrator
3838
- [Download and install Postman](https://www.postman.com/downloads/).
39+
- A minimum requirement of [.NET Core 6.0 SDK](https://dotnet.microsoft.com/download/dotnet).
3940

4041
::: zone-end
4142

articles/active-directory/develop/single-page-app-tutorial-01-register-app.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ In this tutorial:
2323
2424
## Prerequisites
2525

26-
* An Azure account with an active subscription. [Create an account for free](https://azure.microsoft.com/free/).
26+
* An Azure account with an active subscription. [Create an account for free](https://azure.microsoft.com/free/).
2727
* This Azure account must have permissions to manage applications. Any of the following Azure AD roles include the required permissions:
2828
* Application administrator
2929
* Application developer

articles/active-directory/develop/single-page-app-tutorial-03-sign-in-users.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,9 @@ reactspalocal/
250250

251251
1. Save the file.
252252

253-
## Next steps
253+
<!-- ::: zone pivot="devlang-javascript"
254+
[!INCLUDE [javascript](./includes/single-page-app/javascript-tutorial-03-sign-in-users.md)]
255+
<!-- ::: zone-end -->
254256

255257
> [!div class="nextstepaction"]
256-
> [Tutorial: Call an API from a React single-page app](single-page-app-tutorial-04-call-api.md)
258+
> [Tutorial: Call an API from a React single-page app](single-page-app-tutorial-04-call-api.md)

articles/active-directory/develop/single-page-app-tutorial-04-call-api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,4 +181,4 @@ All the required code snippets have been added, so the application can now be ca
181181
Learn how to use the Microsoft identity platform by trying out the following tutorial series on how to build a web API.
182182

183183
> [!div class="nextstepaction"]
184-
> [Tutorial: Register a web API with the Microsoft identity platform](single-page-app-tutorial-01-register-app.md)
184+
> [Tutorial: Register a web API with the Microsoft identity platform](web-api-tutorial-01-register-app.md)

0 commit comments

Comments
 (0)