-
Notifications
You must be signed in to change notification settings - Fork 192
ZZZ ‐ [Archived] ‐ Add single sign on
Important
Content in this document has been moved to Teams platform documentation. Please do not refer to or update this document.
This feature is currently under active development. Report any issues to us here.
Microsoft Teams provides a mechanism by which an application can obtain the signed-in Teams user token to access Microsoft Graph (and other APIs). Teams Toolkit facilitates this interaction by abstracting some of the Microsoft Entra flows and integrations behind some simple APIs. This enables you to add single sign-on experiences (SSO) easily to your Teams application.
For applications that interact with the user in a chat, a Team, or a channel, SSO manifests as an Adaptive Card which the user can interact with to invoke the Microsoft Entra consent flow.
In this tutorial, you will:
- Enable SSO for your project
- Understand what will be changed for your project
- Update your code and debug your application
- SSO authentication concepts
Teams Toolkit can add SSO to the following Teams capabilities:
- Tab
- Bot
- Notification bot (restify server)
- Command bot
To enable SSO support:
-
Open the Teams Toolkit panel
-
Select
Add features
or open Visual Studio Code Command Palette and selectTeams: Add features
- Select
Single Sign-On
Run the teamsfx add sso
command in your project root directory.
Note: This feature will enable SSO for all existing applicable capabilities. If you add an capability later to the project, you can follow the same steps to enable SSO for that capability.
Teams Toolkit will make the following changes to your project:
Type | File | Purpose |
---|---|---|
Create |
aad.template.json under templates/appPackage
|
This is the Microsoft Entra application manifest. This template defines your application registration. Your application is registered during provisioning. |
Modify |
manifest.template.json under templates/appPackage
|
The Toolkit adds a webApplicationInfo definition to the Teams app manifest template. This field is required by Teams when enabling SSO. This change will take effect when provisioning the application. |
Create | auth/tab |
Reference code and auth redirect pages for a tab project. |
Create | auth/bot |
Reference code and auth redirect pages for a bot project. |
Note: Adding SSO only makes changes to your project. These changes will be applied to Azure when you provision your application. You also need to update your code to light up the SSO feature.
After adding the SSO feature, follow these steps to enable SSO in your application.
Note: These changes are based on the templates we scaffold.
-
Move
auth-start.html
andauth-end.htm
** inauth/public
folder totabs/public/
. Teams Toolkit registers these two endpoints in Microsoft Entra for Microsoft Entra's redirect flow. -
Move
sso
folder underauth/tab
totabs/src/sso/
.-
InitTeamsFx
: This file implements a function that initialize TeamsFx SDK and will openGetUserProfile
component after SDK is initialized. -
GetUserProfile
: This file implements a function that calls Microsoft Graph API to get user info.
-
-
Execute
npm install @microsoft/teamsfx-react
undertabs/
-
Add the following lines to
tabs/src/components/sample/Welcome.tsx
to importInitTeamsFx
:import { InitTeamsFx } from "../../sso/InitTeamsFx";
-
Replace the following line:
<AddSSO />
with<InitTeamsFx />
to replace theAddSso
component withInitTeamsFx
component.
-
Move
auth/bot/public
folder tobot/src
. This folder contains HTML pages used for Microsoft Entra's redirect flow. Note: you need to modifybot/src/index
file to add routing to these pages. -
Move
auth/bot/sso
folder tobot/src
. These folder contains three files as reference for sso implementation:-
showUserInfo
: This implements a function to get user info with SSO token. You can follow this method and create your own method that requires SSO token. -
ssoDialog
: This creates a ComponentDialog that used for SSO. -
teamsSsoBot
: This create a TeamsActivityHandler withssoDialog
and addshowUserInfo
as a command that can be triggered.
-
-
Execute the following commands under
bot/
:npm install isomorphic-fetch
-
Execute the following commands under
bot/
:npm install copyfiles
and replace following line in package.json:"build": "tsc --build",
with:
"build": "tsc --build && copyfiles public/*.html lib/",
This will copy the HTML files used for the Microsoft Entra redirect flow during build.
-
Create a new
teamsSsoBot
instance inbot/src/index
file. Replace the following code:// Process Teams activity with Bot Framework. server.post("/api/messages", async (req, res) => { await commandBot.requestHandler(req, res); });
with:
const handler = new TeamsSsoBot(); // Process Teams activity with Bot Framework. server.post("/api/messages", async (req, res) => { await commandBot.requestHandler(req, res, async (context)=> { await handler.run(context); }); });
-
Add the HTML routes in the
bot/src/index
file:server.get( "/auth-*.html", restify.plugins.serveStatic({ directory: path.join(__dirname, "public"), }) );
-
Add the following lines to
bot/src/index
to importteamsSsoBot
andpath
:// For ts: import { TeamsSsoBot } from "./sso/teamsSsoBot"; const path = require("path"); // For js: const { TeamsSsoBot } = require("./sso/teamsSsoBot"); const path = require("path");
-
Register your command in the Teams app manifest. Open
templates/appPackage/manifest.template.json
, and add following lines undercommand
incommandLists
of your bot:{ "title": "show", "description": "Show user profile using Single Sign On feature" }
After adding SSO in your application, you can also add a new command for your bot to handle.
-
Create a new file (e.g.
todo.ts
ortodo.js
) underbot/src/
and add your own business logic to call Graph API:// for TypeScript: export async function showUserImage( context: TurnContext, ssoToken: string, param: any[] ): Promise<DialogTurnResult> { await context.sendActivity("Retrieving user photo from Microsoft Graph ..."); // Init TeamsFx instance with SSO token const teamsfx = new TeamsFx().setSsoToken(ssoToken); // Update scope here. For example: Mail.Read, etc. const graphClient = createMicrosoftGraphClient(teamsfx, param[0]); // You can add following code to get your photo: // let photoUrl = ""; // try { // const photo = await graphClient.api("/me/photo/$value").get(); // photoUrl = URL.createObjectURL(photo); // } catch { // // Could not fetch photo from user's profile, return empty string as placeholder. // } // if (photoUrl) { // await context.sendActivity( // `You can find your photo here: ${photoUrl}` // ); // } else { // await context.sendActivity("Could not retrieve your photo from Microsoft Graph. Please make sure you have uploaded your photo."); // } return; }
// for JavaScript: export async function showUserImage(context, ssoToken, param) { await context.sendActivity("Retrieving user photo from Microsoft Graph ..."); // Init TeamsFx instance with SSO token const teamsfx = new TeamsFx().setSsoToken(ssoToken); // Update scope here. For example: Mail.Read, etc. const graphClient = createMicrosoftGraphClient(teamsfx, param[0]); // You can add following code to get your photo: // let photoUrl = ""; // try { // const photo = await graphClient.api("/me/photo/$value").get(); // photoUrl = URL.createObjectURL(photo); // } catch { // // Could not fetch photo from user's profile, return empty string as placeholder. // } // if (photoUrl) { // await context.sendActivity( // `You can find your photo here: ${photoUrl}` // ); // } else { // await context.sendActivity("Could not retrieve your photo from Microsoft Graph. Please make sure you have uploaded your photo."); // } return; }
-
Register a new command using
addCommand
inteamsSsoBot
:Find the following line:
this.dialog.addCommand("ShowUserProfile", "show", showUserInfo);
and add the following lines to register a new command
photo
and connect it with the methodshowUserImage
:// As shown here, you can add your own parameter into the `showUserImage` method // You can also use regular expression for the command here const scope = ["User.Read"]; this.dialog.addCommand("ShowUserPhoto", new RegExp("photo\s*.*"), showUserImage, scope);
-
Register your command in the Teams application manifest. Open 'templates/appPackage/manifest.template.json' and add following lines under
command
incommandLists
:{ "title": "photo", "description": "Show user photo using Single Sign On feature" }
You can debug your application by pressing F5.
Teams Toolkit will use the Microsoft Entra manifest file to register the Microsoft Entra application for SSO.
To learn more about Teams Toolkit local debugging, refer to this document.
The Microsoft Entra manifest allows you to customize various aspects of your application registration. You can update the manifest as needed.
Follow this document if you need to include additional API permissions to access your desired APIs.
Follow this document to view your Microsoft Entra application in Azure Portal.
Single sign-on (SSO) authentication in Microsoft Entra silently refreshes the authentication token to minimize the number of times users need to enter their sign in credentials. If users agree to use your app, they don't have to provide consent again on another device as they're signed in automatically.
Teams Tabs and bots have similar flows for SSO. To learn more, refer to:
Teams Toolkit helps to reduce the developer tasks by leveraging Teams SSO and accessing cloud resources down to single line statements with zero configuration.
With Teams Toolkit you can write user authentication code in a simplified way using Credentials:
- User identity in browser environment:
TeamsUserCredential
represents Teams current user's identity. - User identity in Node.js environment:
OnBehalfOfUserCredential
uses On-Behalf-Of flow and Teams SSO token. - Application Identity in Node.js environment:
AppCredential
represents the application identity.
To learn more read the documentation or check out the API reference.
You can also explore more samples with SSO built by Teams Framework in the repo
Build Custom Engine Copilots
- Build a basic AI chatbot for Teams
- Build an AI agent chatbot for Teams
- Expand AI bot's knowledge with your content
Scenario-based Tutorials
- Send notifications to Teams
- Respond to chat commands in Teams
- Respond to card actions in Teams
- Embed a dashboard canvas in Teams
Extend your app across Microsoft 365
- Teams tabs in Microsoft 365 and Outlook
- Teams message extension for Outlook
- Add Outlook Add-in to a Teams app
App settings and Microsoft Entra Apps
- Manage Application settings with Teams Toolkit
- Manage Microsoft Entra Application Registration with Teams Toolkit
- Use an existing Microsoft Entra app
- Use a multi-tenant Microsoft Entra app
Configure multiple capabilities
- How to configure Tab capability within your Teams app
- How to configure Bot capability within your Teams app
- How to configure Message Extension capability within your Teams app
Add Authentication to your app
- How to add single sign on in Teams Toolkit for Visual Studio Code
- How to enable Single Sign-on in Teams Toolkit for Visual Studio
Connect to cloud resources
- How to integrate Azure Functions with your Teams app
- How to integrate Azure API Management
- Integrate with Azure SQL Database
- Integrate with Azure Key Vault
Deploy apps to production