Skip to content

Commit 3cc5eae

Browse files
Merge pull request #250011 from davidmu1/updatesteps29
updated sign-in steps for admin center
2 parents 18331a3 + 5bdff64 commit 3cc5eae

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

articles/active-directory/develop/tutorial-v2-angular-auth-code.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ In this tutorial:
2323

2424
> [!div class="checklist"]
2525
>
26-
> - Register the application in the Azure portal
26+
> - Register the application in the Microsoft Entra admin center
2727
> - Create an Angular project with `npm`
2828
> - Add code to support user sign-in and sign-out
2929
> - Add code to call Microsoft Graph API
@@ -71,10 +71,10 @@ To continue with the tutorial and build the application yourself, move on to the
7171

7272
To complete registration, provide the application a name, specify the supported account types, and add a redirect URI. Once registered, the application **Overview** pane displays the identifiers needed in the application source code.
7373

74-
1. Sign in to the [Azure portal](https://portal.azure.com).
75-
1. If access to multiple tenants is available, use the **Directories + subscriptions** filter :::image type="icon" source="media/common/portal-directory-subscription-filter.png" border="false"::: in the top menu to switch to the tenant in which to register the application.
76-
1. Search for and select **Azure Active Directory**.
77-
1. Under **Manage**, select **App registrations > New registration**.
74+
1. Sign in to the [Microsoft Entra admin center](https://entra.microsoft.com) as at least an [Application Developer](../roles/permissions-reference.md#application-developer).
75+
1. If access to multiple tenants is available, use the **Directories + subscriptions** filter :::image type="icon" source="media/common/portal-directory-subscription-filter.png" border="false"::: in the top menu to switch to the tenant in which you want to register the application.
76+
1. Browse to **Identity** > **Applications** > **App registrations**.
77+
1. Select **New registration**.
7878
1. Enter a **Name** for the application, such as _Angular-SPA-auth-code_.
7979
1. For **Supported account types**, select **Accounts in this organizational directory only**. For information on different account types, select the **Help me choose** option.
8080
1. Under **Redirect URI (optional)**, use the drop-down menu to select **Single-page-application (SPA)** and enter `http://localhost:4200` into the text box.
@@ -155,7 +155,7 @@ To complete registration, provide the application a name, specify the supported
155155
export class AppModule {}
156156
```
157157

158-
1. Replace the following values with the values obtained from the Azure portal. For more information about available configurable options, see [Initialize client applications](msal-js-initializing-client-applications.md).
158+
1. Replace the following values with the values obtained from the Microsoft Entra admin center. For more information about available configurable options, see [Initialize client applications](msal-js-initializing-client-applications.md).
159159

160160
- `clientId` - The identifier of the application, also referred to as the client. Replace `Enter_the_Application_Id_Here` with the **Application (client) ID** value that was recorded earlier from the overview page of the registered application.
161161
- `authority` - This is composed of two parts:
@@ -994,7 +994,7 @@ MSAL Angular provides an `Interceptor` class that automatically acquires tokens
994994

995995
## Add scopes and delegated permissions
996996

997-
The Microsoft Graph API requires the _User.Read_ scope to read a user's profile. The _User.Read_ scope is added automatically to every app registration you create in the Azure portal. Other APIs for Microsoft Graph, and custom APIs for your back-end server, might require other scopes. For example, the Microsoft Graph API requires the _Mail.Read_ scope in order to list the user's email.
997+
The Microsoft Graph API requires the _User.Read_ scope to read a user's profile. The _User.Read_ scope is added automatically to every app registration. Other APIs for Microsoft Graph, and custom APIs for your back-end server, might require other scopes. For example, the Microsoft Graph API requires the _Mail.Read_ scope in order to list the user's email.
998998

999999
As you add scopes, your users might be prompted to provide extra consent for the added scopes.
10001000

0 commit comments

Comments
 (0)