Skip to content

How to configure Bot capability within your Teams app

yukun-dong edited this page Feb 16, 2023 · 23 revisions

Configure Bot capability within your Teams app

Introduction

A bot, chatbot, or conversational bot is an app that responds to simple commands sent in chat and replies in meaningful ways. Examples of bots in everyday use include: bots that notify about build failures, bots that provide information about the weather or bus schedules, or provide travel information. A bot interaction can be a quick question and answer, or it can be a complex conversation. Being a cloud application, a bot can provide valuable and secure access to cloud services and corporate resources. Learn more from Build bots for Teams .

Prerequisites

To configure bot as additional capability, please make sure:

  • You have a Teams application and its manifest.
  • You have a Microsoft 365 account to test the application.

For adding bot to a tab Teams app, please go to: Add bot to a tab Teams app.

For adding bot to a message extension Teams app, please go to: Add bot to a message extension Teams app.

Add bot to a tab Teams app:

Following are the steps to add Bot capability to a tab app:

  1. Create a bot Teams app using Teams Toolkit.
  2. Update manifest file.
  3. Bring bot code to your project.
  4. Setup local debug environment.
  5. Move the application to Azure.

Create a bot app using Teams Toolkit

Please check the guide Create a bot app with Teams Toolkit

Configure bot capability in Teams application manifest

  1. You can configure bot in appPackage/manifest.template.json. You can also refer to bot schema if you want to customize.

    Example:

        "bots": [
            {
                "botId": "${{BOT_ID}}",
                "scopes": [
                    "personal",
                    "team",
                    "groupchat"
                ],
                "supportsFiles": false,
                "isNotificationOnly": false,
                "commandLists": [
                    {
                        "scopes": [
                            "personal",
                            "team",
                            "groupchat"
                        ],
                        "commands": [
                            {
                                "title": "welcome",
                                "description": "Resend welcome card of this Bot"
                            },
                            {
                                "title": "learn",
                                "description": "Learn about Adaptive Card and Bot Command"
                            }
                        ]
                    }
                ]
            }
        ]
  2. Add your bot domain to the validDomains field. Example:

    "validDomains": [
        "${{BOT_DOMAIN}}"
    ],

    BOT_ID and BOT_DOMAIN are built-in variables of Teams Toolkit. They will be replaced with the true value in runtime based on your current environment(local, dev, etc.).

Bring bot code to your project

  1. Bring your own bot app code into your project. If you don't have one, you can use the bot app project previously created and copy the source code to into your current project. We suggest you to copy them into a bot/ folder. Your folder structure will be like:
    |-- .vscode/
    |-- appPackage/
    |-- env/
    |-- infra/
    |--public/
    |-- bot/           <!--bot source code-->
    |   |-- adaptiveCards/
    |   |-- index.ts
    |   |-- config.ts
    |   |-- teamsBot.ts
    |   |-- package.json
    |   |-- tsconfig.json
    |   |-- web.config
    |   |-- .webappignore
    |-- src/            <!--your current source code-->
    |   |-- index.tsx
    |-- package.json
    |-- tsconfig.json
    |-- teamsapp.local.yml
    |-- teamsapp.yml
    
    We suggest you to re-organize the folder structure and create a root package.json as:
    |-- .vscode/
    |-- appPackage/
    |-- env/
    |-- infra/
    |-- bot/            <!--bot source code-->
    |   |-- adaptiveCards/
    |   |-- index.ts
    |   |-- config.ts
    |   |-- teamsBot.ts
    |   |-- package.json
    |   |-- tsconfig.json
    |   |-- web.config
    |   |-- .webappignore
    |-- tab/           <!--move your current source code to a new sub folder-->
    |   |-- public/
    |   |-- src/
    |   |   |-- index.tsx
    |   |-- package.json
    |   |-- tsconfig.json
    |-- package.json <!--root package.json-->
    |-- teamsapp.local.yml
    |-- teamsapp.yml
    
  2. Add following to your root package.json:
    "scripts": {
      "test": "echo \"Error: no test specified\" && exit 1",
      "install:bot": "cd bot && npm install",
      "install:tab": "cd tab && npm install",
      "install": "concurrently \"npm run install:bot\" \"npm run install:tab\"",
      "dev:bot": "cd bot && npm run dev",
      "start:tab": "cd tab && npm run start",
      "build:tab": "cd tab && npm run build",
      "build:bot": "cd bot && npm run build",
      "build": "concurrently \"npm run build:tab\" \"npm run build:bot\""
    },
    "devDependencies": {
        "@microsoft/teamsfx-run-utils": "alpha"
    },
    "dependencies": {
        "concurrently": "^7.6.0"
    },

Setup local debug environment

  1. Modify .vscode/launch.json. Add a Attach to Bot configuration and config it under other configurations and compounds. You can also find this Attach to Bot configuration in previously created message extension project.

    "configurations":[
        ...
    +        {
    +            "name": "Attach to Bot",
    +            "type": "pwa-node",
    +            "request": "attach",
    +            "port": 9239,
    +            "restart": true,
    +            "presentation": {
    +                "group": "all",
    +                "hidden": true
    +            },
    +            "internalConsoleOptions": "neverOpen"
    +        },
        {
                "name": "Attach to Frontend (Edge)",
                "type": "pwa-msedge",
                "request": "launch",
                "url": "https://teams.microsoft.com/l/app/${local:teamsAppId}?installAppPackage=true&webjoin=true&${account-hint}",
                "presentation": {
                    "group": "all",
                    "hidden": true
                },
    +            "cascadeTerminateToConfigurations": [
    +                "Attach to Bot"
    +            ],
                "internalConsoleOptions": "neverOpen"
            },
            {
                "name": "Attach to Frontend (Chrome)",
                "type": "pwa-chrome",
                "request": "launch",
                "url": "https://teams.microsoft.com/l/app/${local:teamsAppId}?installAppPackage=true&webjoin=true&${account-hint}",
                "presentation": {
                    "group": "all",
                    "hidden": true
                },
    +            "cascadeTerminateToConfigurations": [
    +                "Attach to Bot"
    +            ],
                "internalConsoleOptions": "neverOpen"
            },
    ],
        "compounds": [
            {
                "name": "Debug (Edge)",
                "configurations": [
                    "Attach to Frontend (Edge)",
    +                "Attach to Bot"
                ],
                "preLaunchTask": "Start Teams App Locally",
                "presentation": {
                    "group": "all",
                    "order": 1
                },
                "stopAll": true
            },
            {
                "name": "Debug (Chrome)",
                "configurations": [
                    "Attach to Frontend (Chrome)",
    +                "Attach to Bot"
                ],
                "preLaunchTask": "Start Teams App Locally",
                "presentation": {
                    "group": "all",
                    "order": 2
                },
                "stopAll": true
            }
        ]
    
  2. Modify .vscode/task.json. Add 2 new tasks: Start local tunnel and Start bot. Add Start bot to task Start application's dependOn. Config Start bot and Start frondend's cwd option since we already move tab and bot's code to tab/ and bot/ folder separately.

     "tasks":[
            {
    +            "label": "Start local tunnel",
    +            "type": "teamsfx",
    +            "command": "debug-start-local-tunnel",
    +            "args": {
    +                "ngrokArgs": "http 3978 --log=stdout --log-format=logfmt",
    +                "env": "local",
    +                "output": {
    +                    // output to .env.local
    +                    "endpoint": "BOT_ENDPOINT", // output tunnel endpoint as BOT_ENDPOINT
    +                    "domain": "BOT_DOMAIN" // output tunnel domain as BOT_DOMAIN
    +                }
    +            },
    +            "isBackground": true,
    +            "problemMatcher": "$teamsfx-local-tunnel-watch"
    +        },
    +        {
    +            "label": "Start bot",
    +            "type": "shell",
    +            "command": "npm run dev:teamsfx",
    +            "isBackground": true,
    +            "options": {
    +                "cwd": "${workspaceFolder}/bot"
    +            },
    +            "problemMatcher": {
    +                "pattern": [
    +                    {
    +                        "regexp": "^.*$",
    +                        "file": 0,
    +                        "location": 1,
    +                        "message": 2
    +                    }
    +                ],
    +                "background": {
    +                    "activeOnStart": true,
    +                    "beginsPattern": "[nodemon] starting",
    +                    "endsPattern": "restify listening to|Bot/ME service listening at|[nodemon] app crashed"
    +                }
    +            }
    +        },
             {
                "label": "Start frontend",
                "type": "shell",
                "command": "npm run dev:teamsfx",
                "isBackground": true,
                "options": {
    +                "cwd": "${workspaceFolder}/tab"
                },
                "problemMatcher": {
                    "pattern": {
                        "regexp": "^.*$",
                        "file": 0,
                        "location": 1,
                        "message": 2
                    },
                    "background": {
                        "activeOnStart": true,
                        "beginsPattern": ".*",
                        "endsPattern": "Compiled|Failed|compiled|failed"
                    }
                }
            },
            {
                "label": "Start application",
                "dependsOn": [
                    "Start frontend",
    +                "Start bot"
                ]
            },
    ]
    
  3. Manually merge teamsapp.local.yml file with yours. Then update file/updateEnv action under deploy:

    deploy:
    - uses: file/updateEnv # Generate runtime environment variables
        with:
    +      target: ./tab/.localSettings
        envs:
            BROWSER: none
            HTTPS: true
            PORT: 53000
            SSL_CRT_FILE: ${{SSL_CRT_FILE}}
            SSL_KEY_FILE: ${{SSL_KEY_FILE}}
    
    - uses: file/updateEnv # Generate runtime environment variables
        with:
    +      target: ./bot/.localSettings
        envs:
            BOT_ID: ${{BOT_ID}}
            BOT_PASSWORD: ${{SECRET_BOT_PASSWORD}}

    Here is an sample project for reference.

  4. Open the Run and Debug Activity Panel and select Debug (Edge) or Debug (Chrome). Press F5 to preview your Teams app locally.

Move the application to Azure

  1. Manually merge the content in infra/ and teamsapp.yml folder with yours. Here is an sample project for reference.

  2. Run Teams: Provision in the cloud command in Visual Studio Code to apply the bicep to Azure.

  3. Run Teams: Deploy to cloud command in Visual Studio Code to deploy your app code to Azure.

  4. Open the Run and Debug Activity Panel and select Launch Remote (Edge) or Launch Remote (Chrome). Press F5 to preview your Teams app.

Add bot to a message extension Teams app:

Since bot and message extension are both implemented on top of the Bot support architecture within Teams, adding bot to a message extension Teams app is simpler than adding to a tab Teams app.

Following are the steps to add bot capability to a message extension app:

  1. Create a bot Teams app using Teams Toolkit.
  2. Update manifest file.
  3. Bring bot code to your project.

Create a bot app using Teams Toolkit

Please check the guide Create a bot app with Teams Toolkit

Configure bot capability in Teams application manifest

  1. You can configure bot in appPackage/manifest.template.json. You can also refer to bot schema if you want to customize.

    Example:

        "bots": [
            {
                "botId": "${{BOT_ID}}",
                "scopes": [
                    "personal",
                    "team",
                    "groupchat"
                ],
                "supportsFiles": false,
                "isNotificationOnly": false,
                "commandLists": [
                    {
                        "scopes": [
                            "personal",
                            "team",
                            "groupchat"
                        ],
                        "commands": [
                            {
                                "title": "welcome",
                                "description": "Resend welcome card of this Bot"
                            },
                            {
                                "title": "learn",
                                "description": "Learn about Adaptive Card and Bot Command"
                            }
                        ]
                    }
                ]
            }
        ]
  2. Add your bot domain to the validDomains field. Example:

    "validDomains": [
        "${{BOT_DOMAIN}}"
    ],

    BOT_ID and BOT_DOMAIN are built-in variables of Teams Toolkit. They will be replaced with the true value in runtime based on your current environment(local, dev, etc.).

Bring bot code to your project

  1. If you are adding bot to a bot Teams app, then you should already have a class that extends TeamsActivityHandler. Bring your own bot code, or copy code from your previously created bot app to your own class. Below is an example if you copy code from Teams Toolkit created bot app:

      public class YourHandler extends TeamsActivityHandler{
    
        // bot code
        constructor(){
          super();
          this.likeCountObj = { likeCount: 0 };
          this.onMessage(async (context, next) => {});
          this.onMembersAdded(async (context, next) => {});
        }
        async onAdaptiveCardInvoke(context: TurnContext,
    invokeValue: AdaptiveCardInvokeValue):  Promise<AdaptiveCardInvokeResponse> {};
    
        /**
         * your own message extension code
        */
      }

What’s next

There are other commonly suggested next steps, for example:

Clone this wiki locally