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/external-identities/customers/how-to-register-ciam-app.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,7 @@ During app registration, you specify the redirect URI. The redirect URI is the e
24
24
25
25
Azure AD for customers supports authentication for various modern application architectures, for example web app or single-page app. The interaction of each application type with the customer tenant is different, therefore, you must specify the type of application you want to register.
26
26
27
-
In this article, you’ll learn how to register an application in your customer tenant.
27
+
In this article, you learn how to register an application in your customer tenant.
28
28
29
29
## Prerequisites
30
30
@@ -56,7 +56,7 @@ The following steps show you how to register your SPA in the Microsoft Entra adm
56
56
57
57
1. In the **Register an application page** that appears, enter your application's registration information:
58
58
59
-
1. In the **Name** section, enter a meaningful application name that will be displayed to users of the app, for example *ciam-client-app*.
59
+
1. In the **Name** section, enter a meaningful application name that is displayed to users of the app, for example *ciam-client-app*.
60
60
61
61
1. Under **Supported account types**, select **Accounts in this organizational directory only**.
62
62
@@ -75,7 +75,7 @@ This app signs in users. You can add delegated permissions to it, by following t
75
75
76
76
### Grant API permissions (optional):
77
77
78
-
If your SPA needs to call an API, you must grant your SPA API permissions so it can to call the API. You must also [register the web API](how-to-register-ciam-app.md?tabs=webapi) that you need to call.
78
+
If your SPA needs to call an API, you must grant your SPA API permissions so it can call the API. You must also [register the web API](how-to-register-ciam-app.md?tabs=webapi) that you need to call.
79
79
80
80
[!INCLUDE [grant permisions for calling an API](../customers/includes/register-app/grant-api-permission-call-api.md)]
81
81
@@ -109,7 +109,7 @@ The following steps show you how to register your web app in the Microsoft Entra
109
109
110
110
1. In the **Register an application page** that appears, enter your application's registration information:
111
111
112
-
1. In the **Name** section, enter a meaningful application name that will be displayed to users of the app, for example *ciam-client-app*.
112
+
1. In the **Name** section, enter a meaningful application name that is displayed to users of the app, for example *ciam-client-app*.
113
113
114
114
1. Under **Supported account types**, select **Accounts in this organizational directory only**.
115
115
@@ -131,7 +131,7 @@ This app signs in users. You can add delegated permissions to it, by following t
131
131
132
132
### Grant API permissions (optional)
133
133
134
-
If your web app needs to call an API, you must grant your web app API permissions so it can to call the API. You must also [register the web API](how-to-register-ciam-app.md?tabs=webapi) that you need to call.
134
+
If your web app needs to call an API, you must grant your web app API permissions so it can call the API. You must also [register the web API](how-to-register-ciam-app.md?tabs=webapi) that you need to call.
135
135
136
136
[!INCLUDE [grant permissions for calling an API](../customers/includes/register-app/grant-api-permission-call-api.md)]
137
137
@@ -179,7 +179,7 @@ The following steps show you how to register your app in the Microsoft Entra adm
179
179
180
180
1. In the **Register an application page** that appears, enter your application's registration information:
181
181
182
-
1. In the **Name** section, enter a meaningful application name that will be displayed to users of the app, for example *ciam-client-app*.
182
+
1. In the **Name** section, enter a meaningful application name that is displayed to users of the app, for example *ciam-client-app*.
183
183
184
184
1. Under **Supported account types**, select **Accounts in this organizational directory only**.
185
185
@@ -194,7 +194,7 @@ The following steps show you how to register your app in the Microsoft Entra adm
194
194
195
195
### Grant API permissions (optional)
196
196
197
-
If your mobile app needs to call an API, you must grant your mobile app API permissions so it can to call the API. You must also [register the web API](how-to-register-ciam-app.md?tabs=webapi) that you need to call.
197
+
If your mobile app needs to call an API, you must grant your mobile app API permissions so it can call the API. You must also [register the web API](how-to-register-ciam-app.md?tabs=webapi) that you need to call.
198
198
[!INCLUDE [grant permissions for calling an API](../customers/includes/register-app/grant-api-permission-call-api.md)]
Copy file name to clipboardExpand all lines: articles/active-directory/external-identities/customers/how-to-web-app-node-sign-in-call-api-sign-in-acquire-access-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
@@ -119,7 +119,7 @@ The `/` route is the entry point to the application. It renders the `views/index
119
119
120
120
1. In your code editor, open *auth/AuthProvider.js* file, then add the code from [AuthProvider.js](https://github.com/Azure-Samples/ms-identity-ciam-javascript-tutorial/blob/main/2-Authorization/4-call-api-express/App/auth/AuthProvider.js) to it.
121
121
122
-
The `/signin`, `/signout` and `/redirect` routes are defined in the *routes/auth.js* file, but their logic live in *auth/AuthProvider.js* file.
122
+
The `/signin`, `/signout` and `/redirect` routes are defined in the *routes/auth.js* file, but you implement their logic in *auth/AuthProvider.js* file.
Copy file name to clipboardExpand all lines: articles/active-directory/external-identities/customers/includes/register-app/add-api-scopes.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ An API needs to publish a minimum of one scope, also called [Delegated Permissio
16
16
17
17
1. Under **Scopes defined by this API**, select **Add a scope**.
18
18
19
-
1. Enter the following values that defines a read access to the API, then select **Add scope** to save your changes:
19
+
1. Enter the following values that define a read access to the API, then select **Add scope** to save your changes:
20
20
21
21
22
22
| Property | Value |
@@ -27,7 +27,7 @@ An API needs to publish a minimum of one scope, also called [Delegated Permissio
27
27
| Admin consent description |*Allow the app to read the user's ToDo list using the 'TodoListApi'*. |
28
28
| State |**Enabled**|
29
29
30
-
1. Select **Add a scope** again, and enter the following values for the second scope that defines a read and write access to the API. Select **Add scope** to save your changes:
30
+
1. Select **Add a scope** again, and enter the following values that define a read and write access scope to the API. Select **Add scope** to save your changes:
Copy file name to clipboardExpand all lines: articles/active-directory/external-identities/customers/includes/register-app/register-client-app-common.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,8 +23,8 @@ The following steps show you how to register your app in the Microsoft Entra adm
23
23
1. Select **+ New registration**.
24
24
1. In the **Register an application** page that appears;
25
25
26
-
1. Enter a meaningful application **Name** that will be displayed to users of the app, for example *ciam-client-app*.
26
+
1. Enter a meaningful application **Name** that is displayed to users of the app, for example *ciam-client-app*.
27
27
1. Under **Supported account types**, select **Accounts in this organizational directory only**.
28
28
29
29
1. Select **Register**.
30
-
1. The application's **Overview** pane will displays upon successful registration. Record the **Application (client) ID** to be used in your application source code.
30
+
1. The application's **Overview** pane displays upon successful registration. Record the **Application (client) ID** to be used in your application source code.
Copy file name to clipboardExpand all lines: articles/active-directory/external-identities/customers/tutorial-web-app-node-sign-in-sign-out.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
@@ -130,7 +130,7 @@ The `/` route is the entry point to the application. It renders the *views/index
130
130
131
131
1. In your code editor, open *auth/AuthProvider.js* file, then add the code from [AuthProvider.js](https://github.com/Azure-Samples/ms-identity-ciam-javascript-tutorial/blob/main/1-Authentication/5-sign-in-express/App/auth/AuthProvider.js) to it.
132
132
133
-
The `/signin`, `/signout` and `/redirect` routes are defined in the *routes/auth.js* file, but their logic live in the *auth/AuthProvider.js* class.
133
+
The `/signin`, `/signout` and `/redirect` routes are defined in the *routes/auth.js* file, but you implement their logic in the *auth/AuthProvider.js* class.
0 commit comments