From 2e019120589fff77bf977478d39ff8e89169a8dc Mon Sep 17 00:00:00 2001 From: Axel Suarez Date: Thu, 14 Aug 2025 17:00:38 -0700 Subject: [PATCH] Typo. using this commit to test nightly rules (change in last 24hrs) --- .../microsoft/agents/hosting/core/oauth_flow.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libraries/microsoft-agents-hosting-core/microsoft/agents/hosting/core/oauth_flow.py b/libraries/microsoft-agents-hosting-core/microsoft/agents/hosting/core/oauth_flow.py index c9deeda7..b54a4f75 100644 --- a/libraries/microsoft-agents-hosting-core/microsoft/agents/hosting/core/oauth_flow.py +++ b/libraries/microsoft-agents-hosting-core/microsoft/agents/hosting/core/oauth_flow.py @@ -152,7 +152,7 @@ async def begin_flow(self, context: TurnContext) -> TokenResponse: ], ) - signing_resource = ( + sign_in_resource = ( await self.user_token_client.agent_sign_in.get_sign_in_resource( state=token_exchange_state.get_encoded_state(), ) @@ -167,12 +167,12 @@ async def begin_flow(self, context: TurnContext) -> TokenResponse: CardAction( title=self.messages_configuration.get("button_text", "Sign in"), type=ActionTypes.signin, - value=signing_resource.sign_in_link, + value=sign_in_resource.sign_in_link, channel_data=None, ) ], - token_exchange_resource=signing_resource.token_exchange_resource, - token_post_resource=signing_resource.token_post_resource, + token_exchange_resource=sign_in_resource.token_exchange_resource, + token_post_resource=sign_in_resource.token_post_resource, ) )