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
<!-- ida:Client is a GUID representing the Application Id for the TodoListClient app that you copied from
8
+
the App Registration Portal (https://apps.dev.microsoft.com) -->
7
9
<addkey="ida:ClientId"value="{Enter the Application Id that you copied from the App Registration Portal.}" />
10
+
11
+
<!-- todo:Scope is either:
12
+
- the same as ida:ClientId, as V2 apps enable several platforms for a same application (a GUID)
13
+
- or otherwise the scope of the Web API created with aht App Registration portal, for instance api://[V2-WebApi-AppId]/access_as_user
14
+
where [V2-WebApi-AppId] is a GUID representing the Application ID of the Web API.
15
+
- or otherwise this can be the scope of a V1 Web API (created with https://portal.azure.com) for instance [V1_WebApi-AppId]/user_impersonation
16
+
where [V1-WebApi-AppId] is a GUID representing the Application ID (also named Client ID) of the V1 Web API created in https://portal.azure.com.
17
+
In that case (V1 app), the Authority used to build the PubliClientApplication in MainWindow.xaml.cs should be set to
18
+
"https://login.microsoftonline.com/organizations/" instead of "https://login.microsoftonline.com/common/"
19
+
-->
8
20
<addkey="todo:Scope"value="{Enter the scope of the Web API, as copied from the App Registration Portal, for instance api://[WebApi-AppId]/access_as_user where [WebApi-AppId] is a GUID" />
9
-
<!--
10
-
Note that the [WebAPI-AppId], which is the Application Id of the called Web API can be the same as the ida:ClientId
11
-
as V2 apps enable several platforms for a same application. But this can also be a different applications
0 commit comments