Skip to content

Commit b099860

Browse files
Merge pull request #250008 from davidmu1/updatesteps27
updated sign-in steps for admin center
2 parents b27de46 + 3ec1822 commit b099860

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
@@ -32,7 +32,7 @@ We also have a [tutorial for Blazor Server](tutorial-blazor-server.md).
3232
- [.NET Core 7.0 SDK](https://dotnet.microsoft.com/download/dotnet-core/7.0)
3333
- An Azure AD tenant where you can register an app. If you don't have access to an Azure AD tenant, you can get one by registering with the [Microsoft 365 Developer Program](https://developer.microsoft.com/microsoft-365/dev-program) or by creating an [Azure free account](https://azure.microsoft.com/free).
3434

35-
## Register the app in the Azure portal
35+
## Register the app
3636

3737
Every app that uses Azure AD for authentication must be registered with Azure AD. Follow the instructions in [Register an application](quickstart-register-app.md) with these specifications:
3838

@@ -47,11 +47,11 @@ To create the application, run the following command. Replace the placeholders i
4747
dotnet new blazorwasm --auth SingleOrg --calls-graph -o {APP NAME} --client-id "{CLIENT ID}" --tenant-id "{TENANT ID}" -f net7.0
4848
```
4949

50-
| Placeholder | Azure portal name | Example |
51-
| ------------- | ----------------------- | -------------------------------------- |
52-
| `{APP NAME}` | — | `BlazorWASMSample` |
50+
| Placeholder | Name | Example |
51+
| ----------- | ---- |-------- |
52+
| `{APP NAME}` | — | `BlazorWASMSample` |
5353
| `{CLIENT ID}` | Application (client) ID | `41451fa7-0000-0000-0000-69eff5a761fd` |
54-
| `{TENANT ID}` | Directory (tenant) ID | `e86c78e2-0000-0000-0000-918e0565a45e` |
54+
| `{TENANT ID}` | Directory (tenant) ID | `e86c78e2-0000-0000-0000-918e0565a45e` |
5555

5656
## Test the app
5757

@@ -77,7 +77,7 @@ Now you'll update your app's registration and code to pull a user's emails and d
7777

7878
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.
7979

80-
1. In the Azure portal, select your app in **App registrations**.
80+
1. In the Microsoft Entra admin center, select your app in **App registrations**.
8181
1. Under **Manage**, select **API permissions**.
8282
1. Select **Add a permission** > **Microsoft Graph**.
8383
1. Select **Delegated Permissions**, then search for and select the **Mail.Read** permission.

0 commit comments

Comments
 (0)