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

Prometheus alertmanager fails to send notifications due to "context deadline exceeded""

I configured prometheus-operator chart with prometheus-msteams for monitoring and alerting of k8s cluster. But all notifications are not correctly directed to the MSteams channel. If i have 6 alerts that are firing, i can see them in the…
1
vote
1 answer

MS Teams app localization using manifest not working

I'm trying to localize my app by following instructions as outlined in the Teams docs. Despite making the changes nearly identically to what's provided on the site, the text does not localize in my app. I'm using version 1.5 of the manifest so…
RizJa
  • 1,961
  • 1
  • 21
  • 38
1
vote
1 answer

Conversation conflicts in Microsoft Bot Framework

I am using Microsoft bot framework V4 nodejs sample 24 for a leave management bot. I have added this bot to ms teams. The problem I am facing is when multiple users are using the bot at once, the conversation data of others are being shown in the…
1
vote
1 answer

Sending messages in Teams with a bot on behalf of a user

I have an app containing a bot on Microsoft Teams, built using the bot-framework. I need my application to be able to let users send message to a specific channel and thread. I can do this with my bot using the "proactive messaging" ability, but the…
1
vote
1 answer

How to get user' info on MS Teams bot - Node.Js

I'm trying to get user's infos when they send a new message to the bot on Microsoft Teams, but I'm new on this things and cannot do it for myself, need some assistance step-by-step. Can you help me with this ? And, how can I use this infos during de…
1
vote
0 answers

Graph api get Teams config returning null

I have a team with a single channel and a series of tabs. Some tabs link to document libraries on SharePoint sites which I can browse fine. When I run a graph api call to try and get the details of the tabs in the channel with a call such as…
Chris
  • 11
  • 3
1
vote
1 answer

Skype Emoticon downloaded with C# HttpClient is a different byte stream than downloaded with browser

This is the most bizarre thing. I'm trying to download this file using the C# HttpClient: https://statics.teams.microsoft.com/evergreen-assets/skype/v2/smile/50.png It happens to be one of the Microsoft Teams emoticon image files. (Incidentally,…
EricRRichards
  • 474
  • 7
  • 20
1
vote
0 answers

Mention user in Microsoft Teams get exception of 'BadRequest', Ms teams channel of Bot Service shows error 'Mention entity does not match text'

I downloaded sample code from Mention sample; var mention = new Mention { Mentioned = turnContext.Activity.From, Text = $"{turnContext.Activity.From.Name}" }; var replyActivity = MessageFactory.Text($"Hello…
Gan Jun
  • 11
  • 4
1
vote
1 answer

Microsoft Teams Adaptive Card Input.ChoiceSet Default Across Platforms

Rendering the same Microsoft Teams Adaptive Card Input.ChoiceSet without a "value" (i.e. no default), shows a default in Microsoft Teams Android Client, but no default choice in the drop-down for OS X, web or iOS Teams clients... How do I render…
1
vote
0 answers

Chatbot deployed on Azure suddenly went down

We have chatbot built with MS Virtual Assistant Template(C#) deployed on Azure platform for enterprise uses. We Keep having an issue with startWebsockAsync in BotController and getting 500 all the time. And the bot would go down randomly during…
JenniLync11
  • 147
  • 1
  • 9
1
vote
1 answer

Bot works in Web Chat but not in Teams channel

I have created a sample Teams app with bot feature, cloning from https://github.com/OfficeDev/microsoft-teams-sample-complete-node/tree/master/src. It is running locally, using ngrok tunnel, and the bot is registered on Azure Bots Channel…
1
vote
1 answer

Get a list of user teams using MS bot framework

I am developing a bot for MS Teams. Can I get a list of teams that the user is a member of, using the context from the private conversation message?
1
vote
1 answer

Dynamic ribbon office 365 using office.js add-in manifest xml

We want sign in / sign out ribbon using add-ins Manifest xml with react and office 365. We use custom xml parts function of office.js but no result found
1
vote
0 answers

Graph-API /v1.0/Teams/id blocked

Edited on 17.02.2020 We develop desktop application, which utilizes the Graph-API to access information form OneDrive, Teams and other information. The app is registered as multi tenant application in AAD. The app needs admin consent to gain all the…
1
vote
2 answers

MS Teams: remove an extension name from a ThumbnailCard

I have a message extension for MS Teams (based on Bot Framework v3). When I create a ThumbnailCard and return it to user, Teams inserts name and logo of my app to card. Can I remove them somehow? This is how I create a card var card = new…