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: README.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
@@ -66,7 +66,7 @@ There are two projects in this sample. Each needs to be separately registered in
66
66
67
67
#### Navigate to the Application registration portal
68
68
69
-
Sign in in [apps.dev.microsoft.com/](apps.dev.microsoft.com/). From there, you can add converged applications
69
+
Sign in to [application registration portal](apps.dev.microsoft.com/). From there, you can add converged applications.
70
70
71
71
#### Register the TodoListClient-v2 app
72
72
@@ -87,7 +87,7 @@ Sign in in [apps.dev.microsoft.com/](apps.dev.microsoft.com/). From there, you c
87
87
1. In the *Platforms* section, click on the **Add Platform** button and then on **Web API**
88
88
1. Copy the scope proposed by default to access your web api as a user. It's in the form ``api://<Application ID>/access_as_user``
89
89
1. In the *Web API platform*, in the *Pre-authorized applications* section click on **Add application**
90
-
1. In the *application ID* field, paste the application ID of the client application as pasted from the registration
90
+
1. In the *application ID* field, paste the application ID of the `TodoListClient-v2` application as pasted from the registration
91
91
1. In the *Scope* field, click on the **Select** combo box and select the scope for this Web API `api://<Application ID>/access_as_user`
92
92
1. Press the **Save** button at the bottom of the page.
93
93
@@ -113,16 +113,16 @@ a GUID or domain name | users can only sign in with an account for a specific or
113
113
#### Configure the TodoListService C# project
114
114
115
115
1. Open the solution in Visual Studio.
116
-
1. In the TodoListService project, open the `appsettings.json` file.
117
-
1. Find the `ClientId` property and replace the value with the Application ID (Client ID) property of the Service application, that you registered earlier.
116
+
1. In the *TodoListService* project, open the `appsettings.json` file.
117
+
1. Find the `ClientId` property and replace the value with the Application ID (Client ID) property of the *TodoListService-v2* application, that you registered earlier.
118
118
1.[Optional] if you want to limit sign-in to users in your organization, also update
119
119
- The `Domain` property, replacing the existing value with your AAD tenant domain, for example, contoso.onmicrosoft.com.
120
120
- The `TenantId` property replacing the existing value with the Tenant ID.
121
121
122
122
#### Configure the TodoListClient C# project
123
123
124
124
1. In the TodoListClient project, open `App.config`.
125
-
1. Find the app key `ida:ClientId` and replace the value with the ApplicationID (Client ID) for the TodoListClient-v2 app copied from the app registration page.
125
+
1. Find the app key `ida:ClientId` and replace the value with the ApplicationID (Client ID) for the *TodoListClient-v2* app copied from the app registration page.
126
126
1. Find the app key `todo:TodoListScope` and replace the value with the scope of the TodoListService-v2 application copied from the app registration (of the form ``api://<Application ID of service>/access_as_user``)
127
127
1.[Optional] If you want your application to work only in your organization (only in your tenant) you'll also need to Find the app key `ida:Tenant` and replace the value with your AAD Tenant ID (GUID). Alternatively you can also use your AAD tenant Name (for example, contoso.onmicrosoft.com)
128
128
1.[Optional] If you changed the default URL for your service application, find the app key `todo:TodoListBaseAddress` and replace the value with the base address of the TodoListService project.
0 commit comments