SSO Token Exchange Middleware by axelsrz · Pull Request #1641 · microsoft/botbuilder-python · GitHub
Skip to content
This repository was archived by the owner on Jan 5, 2026. It is now read-only.
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
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ async def write(self, changes: Dict[str, StoreItem]):
old_state_etag is not None
and new_value_etag is not None
and new_value_etag != "*"
and new_value_etag < old_state_etag
and new_value_etag != old_state_etag
):
raise KeyError(
"Etag conflict.\nOriginal: %s\r\nCurrent: %s"
Expand Down
2 changes: 2 additions & 0 deletions libraries/botbuilder-core/botbuilder/core/teams/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,12 @@
teams_get_team_info,
teams_notify_user,
)
from .teams_sso_token_exchange_middleware import TeamsSSOTokenExchangeMiddleware

__all__ = [
"TeamsActivityHandler",
"TeamsInfo",
"TeamsSSOTokenExchangeMiddleware",
"teams_get_channel_id",
"teams_get_team_info",
"teams_notify_user",
Expand Down