Skip to content

Commit fde338c

Browse files
Merge pull request #249708 from davidmu1/updatesteps11
updated sign-in steps for admin center
2 parents 8345e60 + c26ad01 commit fde338c

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

articles/active-directory/develop/tutorial-v2-windows-uwp.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -387,24 +387,24 @@ private async Task DisplayMessageAsync(string message)
387387

388388
Now, register your application:
389389

390-
1. Sign in to the <a href="https://portal.azure.com/" target="_blank">Azure portal</a>.
390+
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).
391391
1. If you have access to multiple tenants, 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.
392-
1. Search for and select **Azure Active Directory**.
393-
1. Under **Manage**, select **App registrations** > **New registration**.
392+
1. Browse to **Identity** > **Applications** > **Application registrations**.
393+
1. Select **New registration**.
394394
1. Enter a **Name** for your application, for example `UWP-App-calling-MSGraph`. Users of your app might see this name, and you can change it later.
395395
1. Under **Supported account types**, select **Accounts in any organizational directory (Any Azure AD directory - Multitenant) and personal Microsoft accounts (e.g. Skype, Xbox)**.
396396
1. Select **Register**.
397397
1. On the overview page, find the **Application (client) ID** value and copy it. Go back to Visual Studio, open *MainPage.xaml.cs*, and replace the value of `ClientId` with this value.
398398

399399
Configure authentication for your application:
400400

401-
1. Back in the <a href="https://portal.azure.com/" target="_blank">Azure portal</a>, under **Manage**, select **Authentication** > **Add a platform**, and then select **Mobile and desktop applications**.
401+
1. In to the Microsoft Entra admin center, select **Authentication** > **Add a platform**, and then select **Mobile and desktop applications**.
402402
1. In the **Redirect URIs** section, enter `https://login.microsoftonline.com/common/oauth2/nativeclient`.
403403
1. Select **Configure**.
404404

405405
Configure API permissions for your application:
406406

407-
1. Under **Manage**, select **API permissions** > **Add a permission**.
407+
1. Select **API permissions** > **Add a permission**.
408408
1. Select **Microsoft Graph**.
409409
1. Select **Delegated permissions**, search for *User.Read*, and verify that **User.Read** is selected.
410410
1. If you made any changes, select **Add permissions** to save them.
@@ -484,7 +484,7 @@ In the current sample, the `WithRedirectUri("https://login.microsoftonline.com/c
484484
485485
You can then remove the line of code because it's required only once, to fetch the value.
486486

487-
3. In the app registration portal, add the returned value in **RedirectUri** in the **Authentication** pane.
487+
3. In the Microsoft Entra admin center, add the returned value in **RedirectUri** in the **Authentication** pane.
488488

489489
## Test your code
490490

0 commit comments

Comments
 (0)