forked from pnp/copilot-pro-dev-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathentra.manifest.json
More file actions
47 lines (47 loc) · 1.3 KB
/
Copy pathentra.manifest.json
File metadata and controls
47 lines (47 loc) · 1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"id": "${{ENTRA_APP_OBJECT_ID}}",
"appId": "${{ENTRA_APP_CLIENT_ID}}",
"displayName": "da-ristorante-api-devproxy-oauth${{APP_NAME_SUFFIX}}",
"identifierUris": [
"api://${{ENTRA_APP_CLIENT_ID}}"
],
"signInAudience": "AzureADMyOrg",
"api": {
"requestedAccessTokenVersion": 2,
"oauth2PermissionScopes": [
{
"adminConsentDescription": "Read dishes from the menu",
"adminConsentDisplayName": "Read dishes",
"id": "${{AAD_APP_ACCESS_AS_USER_PERMISSION_ID}}",
"isEnabled": true,
"type": "User",
"userConsentDescription": "Read dishes from the menu",
"userConsentDisplayName": "Read dishes",
"value": "Dishes.Read"
},
{
"adminConsentDescription": "Place orders",
"adminConsentDisplayName": "Place orders",
"id": "b946efb1-2c3d-4e5f-a6b7-c8d9e0f1a2b3",
"isEnabled": true,
"type": "User",
"userConsentDescription": "Place orders",
"userConsentDisplayName": "Place orders",
"value": "Orders.Write"
}
]
},
"info": {},
"publicClient": {
"redirectUris": []
},
"web": {
"redirectUris": [
"https://teams.microsoft.com/api/platform/v1.0/oAuthRedirect"
],
"implicitGrantSettings": {}
},
"spa": {
"redirectUris": []
}
}