diff --git a/msteams-platform/assets/images/authentication/teams-sso-bots/bot-consent.png b/msteams-platform/assets/images/authentication/teams-sso-bots/bot-consent.png index efcfe00ed25..350226da36c 100644 Binary files a/msteams-platform/assets/images/authentication/teams-sso-bots/bot-consent.png and b/msteams-platform/assets/images/authentication/teams-sso-bots/bot-consent.png differ diff --git a/msteams-platform/bots/how-to/authentication/bot-sso-manifest.md b/msteams-platform/bots/how-to/authentication/bot-sso-manifest.md index a5de3586c47..2ec27c6b832 100644 --- a/msteams-platform/bots/how-to/authentication/bot-sso-manifest.md +++ b/msteams-platform/bots/how-to/authentication/bot-sso-manifest.md @@ -87,8 +87,8 @@ For more information, see [webApplicationInfo](../../../resources/schema/manifes ```json { - "$schema": "https://developer.microsoft.com/json-schemas/teams/v1.7/MicrosoftTeams.schema.json", - "manifestVersion": "1.7", + "$schema": "https://developer.microsoft.com/json-schemas/teams/v1.21/MicrosoftTeams.schema.json", + "manifestVersion": "1.21", "version": "1.0", "id": "00000000-0000-0000-0000-000000000000", "packageName": "com.microsoft.teams.samples.auth", @@ -143,7 +143,8 @@ For more information, see [webApplicationInfo](../../../resources/schema/manifes { "botId": "<>", "scopes": [ - "personal" + "personal", + "groupChat" ] } ], @@ -190,11 +191,11 @@ To preview your app in Teams: 1. Select your app package zip file, and then select **Add**. - The custom app is uploaded. The consent dialog appears to inform you of the permissions that might be required. + The custom app is uploaded. A consent dialog appears to inform you of the permissions that might be required. -1. Select **Continue**. +1. Select **View permissions** and provide the necessary permissions to authenticate the app. - :::image type="content" source="../../../assets/images/authentication/teams-sso-bots/bot-consent.png" alt-text="Screenshot shows a bot authentication consent message in Teams." border="false" lightbox="../../../assets/images/authentication/teams-sso-bots/bot-consent.png"::: + :::image type="content" source="../../../assets/images/authentication/teams-sso-bots/bot-consent.png" alt-text="Screenshot shows a bot authentication consent message in Teams." lightbox="../../../assets/images/authentication/teams-sso-bots/bot-consent.png"::: Teams opens the app and you can use it. diff --git a/msteams-platform/bots/how-to/authentication/bot-sso-overview.md b/msteams-platform/bots/how-to/authentication/bot-sso-overview.md index 0b980e12bb0..7f3576a8154 100644 --- a/msteams-platform/bots/how-to/authentication/bot-sso-overview.md +++ b/msteams-platform/bots/how-to/authentication/bot-sso-overview.md @@ -11,7 +11,7 @@ ms.owner: ryanbliss With single sign-on (SSO) in Microsoft Teams, app users can sign in to Teams using either a Microsoft or Microsoft 365 account and use bot and message extension apps without needing to sign in again. Your app is available to app users on any device with access granted through Microsoft Entra ID. > [!NOTE] -> SSO for a bot app in Teams is supported only in one-on-one chat. +> SSO for a bot app in Teams is supported only in one-on-one and group chats. This section covers SSO configuration required for bot and messaging extension apps.