forked from OfficeDev/Microsoft-Teams-Samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appsettings.json
34 lines (34 loc) · 974 Bytes
/
appsettings.json
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
{
"MicrosoftAppId": "<<MicrosoftAppId>>",
"MicrosoftAppPassword": "<<MicrosoftAppPassword>>",
"BotBaseUrl": "<<BotBaseUrl>>",
"AzureAd": {
"Instance": "https://login.microsoftonline.com/",
"TenantId": "<<Tenant-Id>>",
"ClientId": "<<client-id>>",
"ClientSecret": "<<client-secret>>"
},
"Bot": {
"AppId": "<<MicrosoftAppId>>",
"AppSecret": "<<MicrosoftAppPassword>>",
"PlaceCallEndpointUrl": "https://graph.microsoft.com/v1.0",
"BotBaseUrl": "https://<<subdomain>>.ngrok.io",
"GraphApiResourceUrl": "https://graph.microsoft.com",
"MicrosoftLoginUrl": "https://login.microsoftonline.com/"
},
"UserId": "<<object-id-of-the-user-to-whom-online-meeting-policy-has-been-granted>>",
"Users": [
{
"DisplayName": "<<UserName>>",
"Id": "<<UserId>>"
},
{
"DisplayName": "<<UserName>>",
"Id": "<<UserId>>"
},
{
"DisplayName": "<<UserName>>",
"Id": "<<UserId>>"
}
]
}