Skip to content

Commit baa46d4

Browse files
committed
updated app registration
1 parent c689cd2 commit baa46d4

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

articles/active-directory/develop/quickstart-v1-dotnet.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ To enable your app to get tokens, register your app in your Azure AD tenant and
5757
4. On **App registrations**, choose **New registration**.
5858
5. Follow the prompts to create a new client application.
5959
* **Name** is the application name and describes your application to end users.
60+
* Under **Supported account types**, select **Accounts in any organizational directory and personal Microsoft accounts**.
6061
* **Redirect URI** is a scheme and string combination that Azure AD uses to return token responses. Enter a value that is specific to your application (for example, `http://DirectorySearcher`) and is based on the previous redirect URI information. Also select **Public client (mobile and desktop)** from the dropdown.
6162

6263
6. Once you've completed registration, AAD will assign your app a unique Application ID. You'll need this value in the next sections, so copy it from the application page.

articles/active-directory/develop/quickstart-v1-xamarin.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ms.workload: identity
1414
ms.tgt_pltfrm: mobile-xamarin
1515
ms.devlang: dotnet
1616
ms.topic: quickstart
17-
ms.date: 09/24/2018
17+
ms.date: 05/22/2019
1818
ms.author: ryanwi
1919
ms.reviewer: jmprieur
2020
ms.custom: aaddev
@@ -53,14 +53,14 @@ To enable the app to get tokens, you first need to register it in your Azure AD
5353
1. Sign in to the [Azure portal](https://portal.azure.com).
5454
2. On the top bar, click your account. Then, under the **Directory** list, select the Active Directory tenant where you want to register the app.
5555
3. Click **All services** in the left pane, and then select **Azure Active Directory**.
56-
4. Click **App registrations**, and then select **Add**.
57-
5. To create a new **Native Client Application**, follow the prompts.
56+
4. Click **App registrations**, and then select **New registration**.
57+
5. To create a new client application, follow the prompts.
5858
* **Name** describes the app to users.
59+
* Under **Supported account types**, select **Accounts in any organizational directory and personal Microsoft accounts**.
5960
* **Redirect URI** is a scheme and string combination that Azure AD uses to return token responses. Enter a value (for example, `http://DirectorySearcher`).
6061
6. After you’ve completed registration, Azure AD assigns the app a unique application ID. Copy the value from the **Application** tab, because you'll need it later.
61-
7. On the **Settings** page, select **Required Permissions**, and then select **Add**.
62-
8. Select **Microsoft Graph** as the API. Under **Delegated Permissions**, add the **Read Directory Data** permission.
63-
This action enables the app to query the Graph API for users.
62+
7. From the **API permissions** page, select **Add a permission**. Inside **Select an API** select ***Microsoft Graph***.
63+
8. Under **Delegated permissions**, select the permission **User.Read**, then hit **Add** to save. This permission sets up your application to query the Azure AD Graph API for users.
6464

6565
## Step 3: Install and configure ADAL
6666

0 commit comments

Comments
 (0)