Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions dotnet/agent-framework/sample-agent/appsettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,14 @@
"Connections": {
"ServiceConnection": {
"Settings": {
"AuthType": "UserManagedIdentity", // this is the AuthType for the connection, valid values can be found in Microsoft.Agents.Authentication.Msal.Model.AuthTypes.
"AuthorityEndpoint": "https://login.microsoftonline.com/{{BOT_TENANT_ID}}",
"ClientId": "{{BOT_ID}}", // this is the BluePrint Client ID used for the connection.
"AuthType": "ClientSecret", // this is the AuthType for the connection, valid values can be found in Microsoft.Agents.Authentication.Msal.Model.AuthTypes.
"AuthorityEndpoint": "https://login.microsoftonline.com/{{TenantId}}",
"ClientId": "{{ClientId}}", // this is the BluePrint Client ID used for the connection.
"Scopes": [
"5a807f24-c9de-44ee-a3a7-329e88a00ffc/.default"
]
],
"ClientSecret": "",
"AgentId": "{{ClientId}}"
}
}
},
Expand Down