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-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**.
To start your quickstart application, use either of the following options.
37
+
### Step 1: Register your application
38
38
39
-
### Option 1 (Express): Register and auto configure your app and then download your code sample
40
-
41
-
1. Go to the [Azure portal - App registrations](https://portal.azure.com/#blade/Microsoft_AAD_RegisteredApps/ApplicationsListBlade/quickStartType/AngularSpaQuickstartPage/sourceType/docs) quickstart experience.
42
-
1. Enter a name for your application.
43
-
1. Under **Supported account types**, select **Accounts in any organizational directory and personal Microsoft accounts**.
44
-
1. Select **Register**.
45
-
1. Go to the quickstart pane and follow the instructions to download and automatically configure your new application.
46
-
47
-
### Option 2 (Manual): Register and manually configure your application and code sample
1. Sign in to the [Azure portal](https://portal.azure.com/).
54
-
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.
55
-
1. Search for and select **Azure Active Directory**.
56
-
Under **Manage**, select **App registrations** > **New registration**.
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
+
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** > **App registrations**.
42
+
1. Select **New registration**.
57
43
1. When the **Register an application** page appears, enter a name for your application.
58
44
1. Under **Supported account types**, select **Accounts in any organizational directory and personal Microsoft accounts**.
59
45
1. Select **Register**. On the app **Overview** page, note the **Application (client) ID** value for later use.
1. Under **Platform Configurations** expand **Single-page application**.
65
51
1. Confirm that under **Grant types** Your Redirect URI is eligible for the Authorization Code Flow with PKCE.
66
52
67
-
#### Step 2: Download the project
68
-
53
+
### Step 2: Download the project
69
54
70
55
To run the project with a web server by using Node.js, [download the core project files](https://github.com/Azure-Samples/ms-identity-javascript-react-spa/archive/main.zip).
71
56
72
-
####Step 3: Configure your JavaScript app
57
+
### Step 3: Configure your JavaScript app
73
58
74
59
In the *src* folder, open the *authConfig.js* file and update the `clientID`, `authority`, and `redirectUri` values in the `msalConfig` object.
75
60
@@ -95,17 +80,17 @@ Modify the values in the `msalConfig` section as described here:
95
80
96
81
- `Enter_the_Application_Id_Here` is the **Application (client) ID** for the application you registered.
97
82
98
-
To find the value of **Application (client) ID**, go to the app registration's **Overview** page in the Azure portal.
83
+
To find the value of **Application (client) ID**, go to the app registration's **Overview** page.
99
84
- `Enter_the_Cloud_Instance_Id_Here` is the instance of the Azure cloud. For the main or global Azure cloud, enter `https://login.microsoftonline.com`. For **national** clouds (for example, China), see [National clouds](authentication-national-cloud.md).
100
85
-`Enter_the_Tenant_info_here` is set to one of the following:
101
86
- If your application supports *accounts inthis organizational directory*, replace this value with the **Tenant ID** or **Tenant name**. For example, `contoso.microsoft.com`.
102
87
103
-
To find the value of the **Directory (tenant) ID**, go to the app registration's **Overview** page in the Azure portal.
88
+
To find the value of the **Directory (tenant) ID**, go to the app registration's **Overview** page.
104
89
- If your application supports *accounts in any organizational directory*, replace this value with `organizations`.
105
90
- If your application supports *accounts in any organizational directory and personal Microsoft accounts*, replace this value with `common`. **For this quickstart**, use `common`.
106
91
- To restrict support to *personal Microsoft accounts only*, replace this value with `consumers`.
107
92
108
-
To find the value of **Supported account types**, go to the app registration's **Overview** pagein the Azure portal.
93
+
To find the value of **Supported account types**, go to the app registration's **Overview** page.
109
94
-`Enter_the_Redirect_Uri_Here` is `http://localhost:3000/`.
110
95
111
96
The `authority` value in your *authConfig.js* should be similar to the following if you're using the main (global) Azure cloud:
@@ -125,7 +110,7 @@ Scroll down in the same file and update the `graphMeEndpoint`.
125
110
};
126
111
```
127
112
128
-
#### Step 4: Run the project
113
+
### Step 4: Run the project
129
114
130
115
Run the project with a web server by using Node.js:
0 commit comments