Skip to content

Commit 0ef89d2

Browse files
[msid][content-health] bugfix
1 parent 40b2170 commit 0ef89d2

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

articles/active-directory/develop/tutorial-blazor-webassembly.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ms.author: jricketts
66
ms.service: active-directory
77
ms.subservice: develop
88
ms.topic: tutorial
9-
ms.date: 12/13/2022
9+
ms.date: 12/14/2022
1010
#Customer intent: As a developer, I want to add authentication and authorization to a Blazor WebAssembly app and call Microsoft Graph.
1111
---
1212

@@ -39,7 +39,7 @@ Every app that uses Azure AD for authentication must be registered with Azure AD
3939

4040
## Create the app using the .NET Core CLI
4141

42-
To create the app you need the latest Blazor templates. You can install them for the .NET Core CLI with the following command:
42+
To create the app, you need the latest Blazor templates. You can install them for the .NET Core CLI with the following command:
4343

4444
```dotnetcli
4545
dotnet new install Microsoft.Identity.Web.ProjectTemplates
@@ -67,17 +67,17 @@ dotnet run
6767

6868
In your browser, navigate to `https://localhost:<port number>`, and log in using an Azure AD user account to see the app running and logging users in with the Microsoft identity platform.
6969

70-
The components of this template that enable logins with Azure AD using the Microsoft identity platform are explained in the [ASP.NET doc on this topic](/aspnet/core/blazor/security/webassembly/standalone-with-azure-active-directory#authentication-package).
70+
The components of this template that enable logins with Azure AD using the Microsoft identity platform are explained in the [ASP.NET doc on this article](/aspnet/core/blazor/security/webassembly/standalone-with-azure-active-directory#authentication-package).
7171

7272
## Retrieving data from a protected API (Microsoft Graph)
7373

7474
[Microsoft Graph](/graph/overview) contains APIs that provide access to Microsoft 365 data for your users, and it supports the tokens issued by the Microsoft identity platform, which makes it a good protected API to use as an example. In this section, you add code to call Microsoft Graph and display the user's emails on the application's "Fetch data" page.
7575

7676
This section is written using a common approach to calling a protected API using a named client. The same method can be used for other protected APIs you want to call. However, if you do plan to call Microsoft Graph from your application you can use the Graph SDK to reduce boilerplate. The .NET docs contain instructions on [how to use the Graph SDK](/aspnet/core/blazor/security/webassembly/graph-api?view=aspnetcore-5.0&preserve-view=true).
7777

78-
Before you start, log out of your app since you'll be making changes to the required permissions, and your current token won't work. If you haven't already, run your app again and select **Log out** before updating the code below.
78+
Before you start, log out of your app since you'll be making changes to the required permissions, and your current token won't work. If you haven't already, run your app again and select **Log out** before updating the code in your app.
7979

80-
Now you will update your app's registration and code to pull a user's emails and display the messages within the app.
80+
Now you'll update your app's registration and code to pull a user's emails and display the messages within the app.
8181

8282
First, add the `Mail.Read` API permission to the app's registration so that Azure AD is aware that the app will request to access its users' email.
8383

@@ -239,5 +239,5 @@ After granting consent, navigate to the "Fetch data" page to read some email.
239239

240240
## Next steps
241241

242-
> [!div class="nextstepaction"]
242+
> [!div class="nextstepaction"]
243243
> [Microsoft identity platform best practices and recommendations](./identity-platform-integration-checklist.md)

0 commit comments

Comments
 (0)