Questions tagged [microsoft-teams]

The Microsoft Teams Developer Platform allows you to integrate your app into Microsoft Teams. You can do this via Tabs that directly surface your web experience, Bots that surface your experience in chat, and Connectors that send your notifications into channels. Please read the tag info (README) for guidance on how to increase the chance that you'll get a high quality answer to your questions.

The Microsoft Teams Developer Platform offers several ways to integrate with Microsoft Teams:

  • Tabs allow team members to access your service on a dedicated canvas within a channel. This lets them work directly with the tools and data you provide, in the channel’s context, and to have conversations about them. A tab consists of a package (manifest), a “configuration page” and a “content page”. These pages must include the Microsoft Teams JavaScript library, which has APIs to assist integration into the Microsoft Teams web and desktop clients.

  • Bots allow your customers to interact with your service through conversation, via the Microsoft Bot Framework, the same framework used to build apps across Microsoft platforms including Skype and Office 365 mail.

  • Connectors help bring useful information and rich content from your services right into channels in Microsoft Teams and enable collaborating team members to have engaging conversations around them.

More information about this developer platform can be found at https://aka.ms/microsoftteamsplatform. Other ways to ask questions, which don’t belong on Stack Overflow, can be found at https://aka.ms/microsoftteamsplatformfeedback.

5076 questions
1
vote
1 answer

Why are we suddenly getting 403 on graph calls to list a team's channels?

We do run the GET call: https://graph.microsoft.com/v1.0/teams/711fc163-0408-4649-9a30-af65a5d30b52/channels It used to return the channels just fine, but this week it suddenly starting failing with this error: { "error": { "code":…
1
vote
1 answer

Is it possible to open an URL and submit an "Action" to the bot via an adaptive card?

I want to open a URL through "Action.OpenUrl" in an AdaptiveCard and addtionally provide an "OK" Status to the bot, so the waterfall dialog can continue as supposed. Important to know is that I want to deploy the bot on azure for MS Teams. So my…
derdax
  • 11
  • 2
1
vote
2 answers

Not able to use identity platform within iFrame/MS Teams custom tab

I am trying to use identity platform to authenticate users into my custom app that is to be used from within MS Teams. I am aware that Teams uses iFrame to load the custom apps. So I followed the method mentioned in the FAQs - Q5. I used…
1
vote
1 answer

SharePoint page not loading in personal tab of static app (MS Teams desktop client)

When adding a SharePoint page as a static tab in my custom personal app, the added SharePoint page is not loaded in the MS Teams desktop client, but works as expected in the web client. Also, when switching to Developer Preview the tab starts to…
Nsevens
  • 2,588
  • 1
  • 17
  • 34
1
vote
2 answers

What is the right way to retrieve data from Adaptive Card without displayed card again after submit?

I'm using Adaptive Card in my Bot with waterfall dialog. I want to retrieve the data that the user gave in the form and show it in chat in another adaptive card after the user click the submit button. But when I click submit button, empty card…
Dima Meshkov
  • 23
  • 1
  • 5
1
vote
1 answer

Microsoft Graph Beta Create call Calls.Initiate.All permission not found

Trying to create a Teams call using the Graph API, but the Calls.Initiate.All is required. In the Graph explorer I see no means to grant application permissions as delegated permissions are not supported. Is there a way to grant this permission in…
greg
  • 1,118
  • 1
  • 20
  • 40
1
vote
1 answer

Microsoft graph: creating team from group doesn't add guests initially

I'm creating a team from a office 365 group using the c# sdk as specified in the documentation. GraphServiceClient graphClient = new GraphServiceClient( authProvider ); var team = new Team { MemberSettings = new TeamMemberSettings { …
1
vote
2 answers

Microsoft bot does not respond back from firebase cloud function

I am using ms bot framework and created a new bot. and deployed the bot connector part on the google firebase functions. But below code does not respond. Below is the code: const builder = require('botbuilder'); const teams =…
1
vote
0 answers

MS Teams App 'Go to website' button function not working

I have developed a Custom Tab in Microsoft Teams and it works perfectly fine. But I am not able to use this functionality in the Teams Mobile App. It also breaks when I try to click on the 'Go to website' button available in the MS Teams App. After…
1
vote
1 answer

Connect Microsoft Teams to GitHub

I have been trying to connect MS teams to GitHub, so anytime there is a pull request or push made, it will send an update to MS teams group channel. I followed the instructions here to create a webhook.…
Mike_G
  • 11
  • 1
  • 2
1
vote
1 answer

Deploy Bot to MS Teams using Azure or App Studio?

I'm having really annoying problems getting my bot to work in MS Teams. I created it using Bot Framework v4 and deployed it to Azure. I deployed the bot using Direct Line from the "channels" blade and it's working ok. Then in the same blade I…
AskYous
  • 4,332
  • 9
  • 46
  • 82
1
vote
1 answer

MS teams Microsoft Bot Authentication V4

I am working on the example Bot Authentication MS GRAPH I have desired output in the emulator channel as on the photo below: When user joins the channel he is presented with welcome message and Login prompt. After authentication dialog is finished…
1
vote
2 answers

OAuth Card in MS Teams?

I built my bot using Direct Line and authentication works there. But when I deployed my bot to MS Teams, pressing the sign in button does nothing at all. I used the following code: AddDialog(new OAuthPrompt( nameof(OAuthPrompt), new…
AskYous
  • 4,332
  • 9
  • 46
  • 82
1
vote
0 answers

Subscribe to (company-wide) voice call events in O365

We are using O365 for voice calls with MS Teams and want to do some business logic if there is an incoming call. When searching around the net, there are lot of information about calling bots. But that's not the use case. We do not want to call a…
1
vote
1 answer

Authentication problem with the botframework

In order to submit our application, we also need to use the bot, we will need your help as we failed at the authentication. We followed the documentation:…
1 2 3
99
100