Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion dotnet/semantic-kernel/sample-agent/appsettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"ClientId": "", // this is the Client ID used for the Azure Bot
"ClientSecret": "", // this is the Client Secret used for the connection.
"Scopes": [
"https://api.botframework.com/.default"
"5a807f24-c9de-44ee-a3a7-329e88a00ffc/.default"
]
}
}
Expand Down
2 changes: 1 addition & 1 deletion python/agent-framework/sample-agent/host_agent_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ def create_auth_configuration(self) -> AgentAuthConfiguration | None:
client_id=client_id,
tenant_id=tenant_id,
client_secret=client_secret,
scopes=["https://api.botframework.com/.default"],
scopes=["5a807f24-c9de-44ee-a3a7-329e88a00ffc/.default"],
)

if environ.get("BEARER_TOKEN"):
Expand Down
2 changes: 1 addition & 1 deletion python/google-adk/sample-agent/.env.template
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ GOOGLE_API_KEY=
CONNECTIONS__SERVICE_CONNECTION__SETTINGS__CLIENTID=
CONNECTIONS__SERVICE_CONNECTION__SETTINGS__CLIENTSECRET=
CONNECTIONS__SERVICE_CONNECTION__SETTINGS__TENANTID=
CONNECTIONS__SERVICE_CONNECTION__SETTINGS__SCOPES=https://api.botframework.com/.default
CONNECTIONS__SERVICE_CONNECTION__SETTINGS__SCOPES=5a807f24-c9de-44ee-a3a7-329e88a00ffc/.default

AGENTAPPLICATION__USERAUTHORIZATION__HANDLERS__AGENTIC__SETTINGS__TYPE=AgenticUserAuthorization
AGENTAPPLICATION__USERAUTHORIZATION__HANDLERS__AGENTIC__SETTINGS__SCOPES=https://graph.microsoft.com/.default
Expand Down
2 changes: 1 addition & 1 deletion python/openai/sample-agent/host_agent_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ def create_auth_configuration(self) -> AgentAuthConfiguration | None:
client_id=client_id,
tenant_id=tenant_id,
client_secret=client_secret,
scopes=["https://api.botframework.com/.default"],
scopes=["5a807f24-c9de-44ee-a3a7-329e88a00ffc/.default"],
)
except Exception as e:
logger.error(
Expand Down
Loading