-
Notifications
You must be signed in to change notification settings - Fork 189
React with Fluent UI
Here is an overall architectural diagram for the React with Fluent UI
app template:
This app template has three major components:
-
Azure Storage: Host the React app with Fluent UI. The code of the React app can be found in the
src
folder. -
Azure Function: Middle-tier service to call Graph. Adopted On-Behalf-Of flow. Code of the Azure Function can be found in
api
folder. -
Microsoft Entra: Both
Azure Storage
andAzure Function
are configured with Microsoft Entra app and use the Microsoft Entra app for authentication.
Some key points in the authentication flow:
-
Get SSO token and call Azure Function with SSO token
This app uses
TeamsFx
SDK to get SSO token from Microsoft 365 apps. Related code can be found insrc\components\samples\AzureFunction.ts
. -
Get access token with SSO token
This app uses
createMicrosoftGraphClientWithCredential
to create a graph client and will automatically request for access token with provided SSO token. Related code can be found inapi\index.ts
.
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