microsoft/teams.net
Publicmirrored fromhttps://github.com/microsoft/teams.netAvailable
Samples/Samples.Echo/appsettings.json
24lines · modecode
| 1 | { |
| 2 | "Logging": { |
| 3 | "LogLevel": { |
| 4 | "Default": "Information", |
| 5 | "Microsoft.AspNetCore": "Warning" |
| 6 | }, |
| 7 | "Microsoft.Teams": { |
| 8 | "Enable": "*", |
| 9 | "Level": "debug" |
| 10 | } |
| 11 | }, |
| 12 | "Teams": { |
| 13 | "Instance": "https://login.microsoftonline.com/", |
| 14 | "TenantId": "", |
| 15 | "ClientId": "", |
| 16 | "ClientCredentials": [ |
| 17 | { |
| 18 | "SourceType": "ClientSecret", |
| 19 | "ClientSecret": "" |
| 20 | } |
| 21 | ] |
| 22 | }, |
| 23 | "AllowedHosts": "*" |
| 24 | } |
| 25 | |