microsoft/teams.net
Publicmirrored fromhttps://github.com/microsoft/teams.netAvailable
core/test/ABSTokenServiceClient/appsettings.json
28lines · modecode
| 1 | |
| 2 | { |
| 3 | "Logging": { |
| 4 | "LogLevel": { |
| 5 | "Default": "Warning", |
| 6 | "Program": "Information", |
| 7 | "ABSTokenServiceClient.UserTokenCLIService": "Information" |
| 8 | } |
| 9 | }, |
| 10 | "Console": { |
| 11 | "FormatterName": "simple", |
| 12 | "FormatterOptions": { |
| 13 | "SingleLine": true, |
| 14 | "TimestampFormat": "HH:mm:ss:ms " |
| 15 | } |
| 16 | }, |
| 17 | "AzureAd": { |
| 18 | "Instance": "https://login.microsoftonline.com/", |
| 19 | "TenantId": "your-tenant-id-here", |
| 20 | "ClientId": "your-client-id-here", |
| 21 | "ClientCredentials": [ |
| 22 | { |
| 23 | "SourceType": "ClientSecret", |
| 24 | "ClientSecret": "your-client-secret-here" |
| 25 | } |
| 26 | ] |
| 27 | } |
| 28 | } |
| 29 | |