Skip to content

Commit 052e72e

Browse files
committed
updated app registration
1 parent baa46d4 commit 052e72e

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

articles/active-directory/develop/v1-protocols-openid-connect-code.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ms.workload: identity
1414
ms.tgt_pltfrm: na
1515
ms.devlang: na
1616
ms.topic: article
17-
ms.date: 03/04/2019
17+
ms.date: 05/22/2019
1818
ms.author: ryanwi
1919
ms.reviewer: hirsin
2020
ms.custom: aaddev

includes/active-directory-protocols-getting-started.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ms.workload: identity
1212
ms.tgt_pltfrm: na
1313
ms.devlang: dotnet
1414
ms.topic: article
15-
ms.date: 04/18/2018
15+
ms.date: 05/22/2019
1616
ms.author: priyamo
1717
---
1818
## Register your application with your AD tenant
@@ -22,10 +22,11 @@ First, you need to register your application with your Azure Active Directory (A
2222
* Choose your Azure AD tenant by clicking on your account in the top right corner of the page, followed by clicking on the **Switch Directory** navigation and then select the appropriate tenant.
2323
* Skip this step, if you've only one Azure AD tenant under your account or if you've already selected the appropriate Azure AD tenant.
2424
* In the left hand navigation pane, click on **Azure Active Directory**.
25-
* Click on **App Registrations** and click on **New application registration**.
26-
* Follow the prompts and create a new application. It doesn't matter if it is a web application or a native application for this tutorial, but if you'd like specific examples for web applications or native applications, check out our [quickstarts](../articles/active-directory/develop/v1-overview.md).
27-
* For Web Applications, provide the **Sign-On URL**, which is the base URL of your app, where users can sign in e.g `http://localhost:12345`.
28-
<!--TODO: add once App ID URI is configurable: The **App ID URI** is a unique identifier for your application. The convention is to use `https://<tenant-domain>/<app-name>`, e.g. `https://contoso.onmicrosoft.com/my-first-aad-app`-->
29-
* For Native Applications provide a **Redirect URI**, which Azure AD will use to return token responses. Enter a value specific to your application, .e.g `http://MyFirstAADApp`
30-
* Once you've completed registration, Azure AD will assign your application a unique client identifier, the **Application ID**. You need this value in the next sections, so copy it from the application page.
25+
* Click on **App Registrations** and click on **New registration**.
26+
* Follow the prompts and create a new application. It doesn't matter if it is a web application or a public client (mobile & desktop) application for this tutorial, but if you'd like specific examples for web applications or public client applications, check out our [quickstarts](../articles/active-directory/develop/v1-overview.md).
27+
* **Name** is the application name and describes your application to end users.
28+
* Under **Supported account types**, select **Accounts in any organizational directory and personal Microsoft accounts**.
29+
* Provide the **Redirect URI**. For Web Applications, this is the base URL of your app where users can sign in. For example, `http://localhost:12345`. For public client (mobile & desktop), Azure AD uses it to return token responses. Enter a value specific to your application. For example, `http://MyFirstAADApp`.
30+
<!--TODO: add once App ID URI is configurable: The **App ID URI** is a unique identifier for your application. The convention is to use `https://<tenant-domain>/<app-name>`, e.g. `https://contoso.onmicrosoft.com/my-first-aad-app`-->
31+
* Once you've completed registration, Azure AD will assign your application a unique client identifier (the **Application ID**). You need this value in the next sections, so copy it from the application page.
3132
* To find your application in the Azure portal, click **App registrations**, and then click **View all applications**.

0 commit comments

Comments
 (0)