microsoft/teams.net

Public

mirrored fromhttps://github.com/microsoft/teams.netAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
feature/oauthflow-fixes

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

core/samples/A2ABot/appsettings.Alice.json

20lines · modecode

1{
2 "AzureAd": {
3 "Instance": "https://login.microsoftonline.com/",
4 "ClientId": "<Alice-Bot-App-Id>",
5 "ClientCredentials": [
6 {
7 "SourceType": "ClientSecret",
8 "ClientSecret": "<Alice-Bot-App-Secret>"
9 }
10 ],
11 "TenantId": "<Tenant-Id>"
12 },
13 "Bot": {
14 "Name": "Alice",
15 "SelfUrl": "http://localhost:3978",
16 "Description": "questions about cats",
17 "PeerUrl": "http://localhost:3979",
18 "PeerName": "Bob"
19 }
20}
21