Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
July 21, 2021 10:12 pm GMT

Using VS Code Teams Toolkit Extension for Teams App Development

In my previous posts related to the Microsoft Teams developer platform, I introduced a few of Teams app types and how to build your first tabs, bots, and message extensions. These tutorials instructed you to use App Studio for manual configurations and minimal local setup, to focus on familiarizing you with the cencept of Teams app features.

However, in this tutorial, I am showing another way to develop, using a newly introduced developer tool, called Teams Toolkit (Preview) for VS Code, which was created to help you build and deploy Teams apps with integrated identity, access to cloud storage, data from Microsoft Graph, and other services in Azure and M365.

Before you begin, let's check if you have set up your working environment to develop on Teams.

Prerequisites

First, make sure if your Teams client allows you to "sideload" custom apps. Check Enable custom Teams apps and turn on custom app uploading before you begin.

Or you can sign up for Microsoft 365 developer program, a free, renewable subscription that comes with a developer tenant sandbox and sample data pack, like mock user data!

And if you haven't using it already, get the latest version of Visual Studio Code. (Earlier versions might not work with the toolkit.)

Installing Teams Toolkit

Launch VS Code and now install an extension that helps you develop Teams apps.

Select Extensions icon on the left Activity Bar and install the Microsoft Teams Toolkit. If you see two different versions of Teams, Toolkit, make sure to select the "Preview" version 2.x for this tutorial:

Screenshot - Find Toolkit extension in VS Code and install

Optional Tools

The following tools will be installed by the Teams Toolkit extension as you need. However, if using Linux (including WSL), you need to install these tools before using:

Creating New Project with Toolkit

Select Microsoft Teams icon on the left Activity Bar and click Create New Project. At the popup, select Create a new Teams app :

Screenshot - Create a new app

In the Select capabilities section, select one. For this tutorial (and for the next upcoming tutorial - TBD), let's pick Bot, and deselect Tab and select OK.

Screenshot - Create a bot

In the Bot registration section, select Create a new bot registration:

Screenshot - register a bot

In the Programming Language section, select JavaScript:

Screenshot - select JS

Select a workspace. A new folder will be created within your workspace for the project:

Screenshot - select workspace

Enter some name for your app. Press Enter to continue:

Screenshot - enter app name

It will take some time to set it up for you.

In this setup process, the toolkit is preparing these for you:

  • registering an Azure Active Directory Application within the M365 tenant
  • creating an app manifest
  • running API locally using Azure Functions Core Tools to support your app
  • installing and setting up ngrok, to securely tunnel from your localhost to the Teams client

Running a Sample Bot Locally

Once your project is set up, take a look around and see how the template app looks like:

Screenshot - code

But for now, let's just build this sample app and run it locally.

Press F5 key to enable the debug mode.

Alternativelly, click the debug icon from the side menu:

Screenshot - debug and run

This can take up a few minutes to complete as all dependencies are downloaded and the app is built for the first time.

Once it is done, Teams web client will be automatically opened in a browser window. Install it locally by clicking Add:

Screenshot - Teams app being installed

Once the app is intalled, try the bot by typing a command or pick from the menu:

Screenshot - Teams app running

Granting User Permissions

When you try show command, you should notice the app asks your permission to display your information like this:

Screenshot - Teams app permission

and once you hit Continue, it will open an authorization screen:

Alt Text - user authorization

So, it means that your app (and any 3rd party apps!) just cannot automatically grab a user's information without the user's consent!

In next tutorial, I will explain about Microsoft Graph to access user information and how you can implement it for Teams, so stay tuned


Original Link: https://dev.to/azure/using-vs-code-toolkit-for-teams-app-development-2o0g

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To