首页 > 解决方案 > How can I create a custom screen in the messaging section in Microsoft Teams add-on

问题描述

enter image description here

enter image description here

I don't want to use bot framework in pop-up or chat window. Can I use the web API I created myself. When I do a call, I want the api to request it to list the returned data. Can I select multiple data listed?

标签: botframeworkadd-inmicrosoft-teams

解决方案


From your description you seem to want to create a Teams Message extention, specifically a search extention that will be used from the compose box.

this is indeed powered by a webservice that you will write and host, however the communication channel between Teams and your webservice must use the bot framework for communication. Note that you do not need to write a chatbot as such;
I like to think of it as the 'communication channel' between all the Teams clients that have your app installed , and your webservice.

High level steps:

  1. Create and deploy your web service (while developing use a tunneling service like ngrok to run it locally)
  2. Register your web service with the Bot Framework
  3. Create your Teams app package
  4. Install your App into Teams

More steps and details in the messaging extensions documentation


推荐阅读