How to deploy Microsoft Teams app templates in your tenant
This blog post shall guide you through the process of App deployments with Microsoft Teams App templates.
Microsoft Teams is an excellent hub for collaboration, and the most fantastic thing about it is its extensibility. Custom development can close some gaps between out of the box features and specific business needs. But we do not always need to reinvent the wheel completely. You can find amazing ready-to-deploy app-templates. Of course, as a developer, you may want to tweak those templates, but they are ready to use in production and, of course, great to understand how deployment works in Azure.
⚡ Please don’t test in your production environment. If you are new to this, get a free Microsoft 365 developer tenant, it’s way safer for you.
As an example, I will use the Groups Activity App to show the steps that we usually need to do to deploy an app in our tenant.
You can get the complete documentation, including all files, deployment guides, and architecture overview on GitHub. In this article, I will make you aware of some essential steps, which you might forget or give you some context.
Register an App in Azure AD
First, you will need to register an Application in Azure AD, create an app secret and enable GRAPH API permissions.
- Remember to save your App secret immediately after creating it – you won’t be able to read or copy it as soon as you click on something else in Azure Portal.
- To know which permissions you need, read the documentation of the app template.
- Don’t forget to grant admin consent for the permissions
Deploy template
As we deal with One-Click-Deployment, you will need to click that magic deploy to Azure button in the deployment guide and
- create a new resource group
- paste Tenant ID, AppID, App Secret into the form,
- be a little bit patient. It can take a while. You don’t need to stay on that site. You can check later on as well.
Add authentication
Azure AD can easily manage authentication, connect our bot with it, and set the scope as in our app registration.
Package App
Now it’s already time to create our App package. For this, we will need the manifest.json file and two .png files as App icons which we will find in the GitHub repo.
In the manifest.json we will replace placeholders for
developer name,
- URLs for
- site,
- privacy,
- terms of use,
- site,
BOT ID (our App ID),
validDomains –> [BaseResourceName].azurewebsites.net,
and zip this manifest.json with outline.png and color.png from GitHub repo in a GroupActivities.zip file.
⚡ Watch out, sometimes the outline.png provided on GitHub are not transparent, and then your app won’t pass App validation. If this is the case for you, make it transparent, add it again to your .zip file.
Publish
The easiest way to publish your app is via Microsoft Teams App Studio – but you can also do it with Visual Studio Code Teams Toolkit.
If you choose App Studio, upload your .zip file and select publish and then app catalog.
If you choose Teams Toolkit, you can see potential error even before trying to publish, and the error/warning notifications give you more detail about what was wrong, while App Studio just returns a ‘Something went wrong.’
Time for a happy dance!
You May Also Like
M365 Developer Bootcamp
Being volunTOLD Early October, I saw an announcement on twitter regarding #M365Bootcamp, a global virtual event, consisting of 2 different labs to build solutions with Microsoft Graph, Teams, …
Power Platform Licensing QnA – Key take-aways
Early October 2020, I hosted together with Elio Struyf a QnA session about Power Platform licensing. As experts, we invited Ryan Cunningham and Chris Huntingford. Upfront, we asked Tech Community on …
Exploring Microsoft Graph Toolkit as a non Developer – Part 6
If you made it with me up to this blog post, it’s very likely, that you read the previous 5 blog posts about my learning journey about Microsoft Graph as well – Thank you. If not, this is your chance …