You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/active-directory/develop/authentication-national-cloud.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -46,7 +46,7 @@ The following table lists the base URLs for the Azure AD endpoints used to regis
46
46
You can find the authentication endpoints for your application.
47
47
48
48
1. Sign in to the [Microsoft Entra admin center](https://entra.microsoft.com) as at least an [Cloud Application Administrator](../roles/permissions-reference.md#cloud-application-administrator).
49
-
1. Browse to **Identity** > **Applications** > **Application registrations**.
49
+
1. Browse to **Identity** > **Applications** > **App registrations**.
50
50
1. Select **Endpoints** in the top menu.
51
51
52
52
The **Endpoints** page is displayed showing the authentication endpoints for the application.
Copy file name to clipboardExpand all lines: articles/active-directory/develop/howto-call-a-web-api-with-curl.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -72,7 +72,7 @@ Follow these steps to create the web API registration:
72
72
73
73
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).
74
74
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.
75
-
1. Browse to **Identity** > **Applications** > **Application registrations**.
75
+
1. Browse to **Identity** > **Applications** > **App registrations**.
76
76
1. Select **New registration**.
77
77
1. Enter a **Name** for the application, such as *NewWebAPI1*.
78
78
1. For **Supported account types**, select **Accounts in this organizational directory only**. For information on different account types, select **Help me choose** option.
@@ -118,7 +118,7 @@ Follow these steps to create the web app registration:
118
118
119
119
::: zone pivot="no-api"
120
120
121
-
1. Select **Home** to return to the home page. Browse to **Identity** > **Applications** > **Application registrations**.
121
+
1. Select **Home** to return to the home page. Browse to **Identity** > **Applications** > **App registrations**.
122
122
1. Select **New registration**.
123
123
1. Enter a **Name** for the application, such as `web-app-calls-web-api`.
124
124
1. For **Supported account types**, select **Accounts in this organizational directory only**. For information on different account types, select the **Help me choose** option.
@@ -131,7 +131,7 @@ Follow these steps to create the web app registration:
131
131
132
132
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).
133
133
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.
134
-
1. Browse to **Identity** > **Applications** > **Application registrations**.
134
+
1. Browse to **Identity** > **Applications** > **App registrations**.
135
135
1. Select **New registration**.
136
136
1. Enter a Name for the application, such as `web-app-calls-web-api`.
137
137
1. For **Supported account types**, select **Accounts in this organizational directory only**. For information on different account types, select the **Help me choose** option.
@@ -258,7 +258,7 @@ The authorization code flow begins with the client directing the user to the `/a
258
258
```
259
259
260
260
1. Copy the URL, replace the following parameters and paste it into your browser:
261
-
-`{tenant_id}` is the web app **Directory (tenant) ID**. This should be the same value across both of the applications's **Overview** pane **App registrations**.
261
+
-`{tenant_id}` is the web app **Directory (tenant) ID**.
262
262
-`{web-app-calls-web-api_application_client_id}` is the **Application (client) ID** on the web app's (*web-app-calls-web-api*) **Overview** pane.
263
263
-`{web_API_application_client_id}` is the **Application (client) ID** on the web API's (*NewWebAPI1*) **Overview** pane.
264
264
1. Sign in as a user in the Azure AD tenant in which the apps are registered. Consent to any requests for access, if necessary.
@@ -283,7 +283,7 @@ cURL can now be used to request an access token from the Microsoft identity plat
283
283
-d 'grant_type=authorization_code' \
284
284
-d 'client_secret={client_secret}'
285
285
```
286
-
-`{tenant_id}` is the web app **Directory (tenant) ID**. This should be the same value across both of the applications's **Overview** pane **App registrations**.
286
+
-`{tenant_id}` is the web app **Directory (tenant) ID**.
287
287
-`client_id={web-app-calls-web-api_application_client_id}`, and `session_state={web-app-calls-web-api_application_client_id}` is the **Application (client) ID** on the web application's (*web-app-calls-web-api*) **Overview** pane.
288
288
-`api://{web_API_application_client_id}/Forecast.Read` is the **Application (client) ID** on the web API's (*NewWebAPI1*) **Overview** pane.
289
289
-`code={authorization_code}` is the authorization code that was received in [Request an authorization code](#request-an-authorization-code). This enables the cURL tool to request an access token.
Copy file name to clipboardExpand all lines: articles/active-directory/develop/howto-call-a-web-api-with-postman.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -71,7 +71,7 @@ Follow these steps to create the web API registration:
71
71
72
72
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).
73
73
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.
74
-
1. Browse to **Identity** > **Applications** > **Application registrations**.
74
+
1. Browse to **Identity** > **Applications** > **App registrations**.
75
75
1. Select **New registration**.
76
76
1. Enter a **Name** for the application, such as _NewWebAPI1_.
77
77
1. For **Supported account types**, select **Accounts in this organizational directory only**. For information on different account types, select **Help me choose** option.
@@ -116,7 +116,7 @@ Follow these steps to create the web app registration:
116
116
117
117
::: zone pivot="no-api"
118
118
119
-
Select **Home** to return to the home page. Browse to **Identity** > **Applications** > **Application registrations**.
119
+
Select **Home** to return to the home page. Browse to **Identity** > **Applications** > **App registrations**.
120
120
1. Select **New registration**.
121
121
1. Enter a **Name** for the application, such as `web-app-calls-web-api`.
122
122
1. For **Supported account types**, select **Accounts in this organizational directory only**. For information on different account types, select the **Help me choose** option.
@@ -129,7 +129,7 @@ Select **Home** to return to the home page. Browse to **Identity** > **Applicati
129
129
130
130
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).
131
131
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.
132
-
1. Browse to **Identity** > **Applications** > **Application registrations**.
132
+
1. Browse to **Identity** > **Applications** > **App registrations**.
133
133
1. Select **New registration**.
134
134
1. Enter a Name for the application, such as `web-app-calls-web-api`.
135
135
1. For **Supported account types**, select **Accounts in this organizational directory only**. For information on different account types, select the **Help me choose** option.
@@ -183,8 +183,8 @@ You may also notice the **User.Read** permission for the Microsoft Graph API. Th
183
183
184
184
1. Navigate to `ms-identity-docs-code-dotnet/web-api` folder and open `appsettings.json`, replace the `{APPLICATION_CLIENT_ID}` and `{DIRECTORY_TENANT_ID}` with:
185
185
186
-
-`{APPLICATION_CLIENT_ID}` is the web API **Application (client) ID** on the app's **Overview** pane**App registrations**.
187
-
-`{DIRECTORY_TENANT_ID}` is the web API **Directory (tenant) ID** on the app's **Overview** pane**App registrations**.
186
+
-`{APPLICATION_CLIENT_ID}` is the web API **Application (client) ID** on the app's **Overview** pane.
187
+
-`{DIRECTORY_TENANT_ID}` is the web API **Directory (tenant) ID** on the app's **Overview** pane.
188
188
189
189
1. Execute the following command to start the app:
Copy file name to clipboardExpand all lines: articles/active-directory/develop/howto-configure-app-instance-property-locks.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -38,7 +38,7 @@ To configure an app instance lock:
38
38
39
39
1. Sign in to the [Microsoft Entra admin center](https://entra.microsoft.com) as at least an [Cloud Application Administrator](../roles/permissions-reference.md#cloud-application-administrator).
40
40
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.
41
-
1. Browse to **Identity** > **Applications** > **Application registrations**.
41
+
1. Browse to **Identity** > **Applications** > **App registrations**.
42
42
1. Select the application you want to configure.
43
43
1. Select **Authentication**, and then select **Configure** under the *App instance property lock* section.
Copy file name to clipboardExpand all lines: articles/active-directory/develop/msal-android-single-sign-on.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -116,7 +116,7 @@ Once you've generated a signature hash with _keytool_, use the Azure portal to g
116
116
117
117
1. Sign in to the [Microsoft Entra admin center](https://entra.microsoft.com) as at least an [Cloud Application Administrator](../roles/permissions-reference.md#cloud-application-administrator).
118
118
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.
119
-
1. Browse to **Identity** > **Applications** > **Application registrations**.
119
+
1. Browse to **Identity** > **Applications** > **App registrations**.
120
120
1. Select your application, and then select **Authentication** > **Add a platform** > **Android**.
121
121
1. In the **Configure your Android app** pane that opens, enter the **Signature hash** that you generated earlier and a **Package name**.
Copy file name to clipboardExpand all lines: articles/active-directory/develop/msal-net-use-brokers-with-xamarin-apps.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -182,7 +182,7 @@ Add the redirect URI to the app's registration. To generate a properly formatted
182
182
**To generate the redirect URI:**
183
183
184
184
1. Sign in to the [Microsoft Entra admin center](https://entra.microsoft.com) as at least an [Cloud Application Administrator](../roles/permissions-reference.md#cloud-application-administrator).
185
-
1. Browse to **Identity** > **Applications** > **Application registrations**.
185
+
1. Browse to **Identity** > **Applications** > **App registrations**.
Copy file name to clipboardExpand all lines: articles/active-directory/develop/quickstart-daemon-app-java-acquire-token.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -36,7 +36,7 @@ You have two options to start your quickstart application: Express (Option 1 bel
36
36
### Option 1: Register and auto configure your app and then download your code sample
37
37
38
38
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).
39
-
1. Browse to **Identity** > **Applications** > **Application registrations**.
39
+
1. Browse to **Identity** > **Applications** > **App registrations**.
40
40
1. Select **New registration**.
41
41
1. Enter a name for your application and select **Register**.
42
42
1. Follow the instructions to download and automatically configure your new application with just one click.
Copy file name to clipboardExpand all lines: articles/active-directory/develop/quickstart-mobile-app-ios-sign-in.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -40,7 +40,7 @@ To register your application and add the app's registration information to your
40
40
41
41
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).
42
42
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.
43
-
1. Browse to **Identity** > **Applications** > **Application registrations**.
43
+
1. Browse to **Identity** > **Applications** > **App registrations**.
44
44
1. Select **New registration**.
45
45
1. Enter a **Name** for your application. Users of your app might see this name, and you can change it later.
Copy file name to clipboardExpand all lines: articles/active-directory/develop/quickstart-single-page-app-angular-sign-in.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -35,7 +35,7 @@ This quickstart uses MSAL Angular v2 with the authorization code flow.
35
35
36
36
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).
37
37
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.
38
-
1. Browse to **Identity** > **Applications** > **Application registrations**.
38
+
1. Browse to **Identity** > **Applications** > **App registrations**.
39
39
1. Select **New registration**.
40
40
1. Enter a **Name** for your application. Users of your app might see this name, and you can change it later.
41
41
1. Under **Supported account types**, select **Accounts in any organizational directory and personal Microsoft accounts**.
Copy file name to clipboardExpand all lines: articles/active-directory/develop/quickstart-single-page-app-react-sign-in.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -38,7 +38,7 @@ See [How the sample works](#how-the-sample-works) for an illustration.
38
38
39
39
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).
40
40
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.
41
-
1. Browse to **Identity** > **Applications** > **Application registrations**.
41
+
1. Browse to **Identity** > **Applications** > **App registrations**.
42
42
1. Select **New registration**.
43
43
1. When the **Register an application** page appears, enter a name for your application.
44
44
1. Under **Supported account types**, select **Accounts in any organizational directory and personal Microsoft accounts**.
0 commit comments