microsoft-teams

How to update an adaptive card which is already sent to user from BOT?

*爱你&永不变心* 提交于 2019-12-20 04:53:05
问题 I have already sent the card with capturing the details and with buttons.After clicking on submit from task module which will save details through http API here the activity type is Invoke. Now i have to update the existing adaptive Card. I have the code to update the message, but how to update the card or resend the card again. connector = new ConnectorClient(new Uri(activity.ServiceUrl)); reply = activity.CreateReply($"You sent {activity.Text} which was {activity.Text.Length} characters");

How to mention a user/group in a new message to a channel?

陌路散爱 提交于 2019-12-18 17:26:17
问题 I checked the samples/API references here: https://msdn.microsoft.com/en-us/microsoft-teams/connectors https://dev.outlook.com/Connectors/GetStarted https://dev.outlook.com/Connectors/Reference But cannot find how to mention someone in a new message to a channel. 回答1: Programmatic @mentions are not currently supported by Microsoft Teams, and will probably not come soon. There is such a wish from the community in the MS uservoice portal, but it seems not to burn as much as other issues: 回答2:

APIs for reading activity feed from Microsoft Teams

烂漫一生 提交于 2019-12-13 22:33:14
问题 Is there any inbuilt APIs available using which we can read notifications from activity feed in Microsoft Teams? I've gone through Microsoft Teams Developer Platform but didn't find any clue. Any resources with explanation are greatly appreciated. 回答1: The answer from @mdrichardson-msft would find notifications sent by an app, but only a small fraction of the activity feed would ever match that. The Microsoft Graph APIs for retrieving the activity feed are on the backlog but they are not yet

Asp.net WebForms Silent Authentication AAD on Teams Tab

前提是你 提交于 2019-12-13 19:27:12
问题 I'm looking a way to build a Web Forms App C# 4.7 with Azure Active Directory (AAD) Authentication like a SSO Authentication. This WebApp was deployed on Azure Web Application. I'Would like to use this site from : Web Browser - all Teams Tab (adding this to teams as a Tab) -- Working on Web and Desktop App I'have try 3 option : 1/ Using Azure Web Application Authentication (configuration with our AAD) it's work fine on Web Browser and on Teams Web But doesn't Work on Teams Desktop App... 2/

Is it possible to load another bot with different branding to a Teams app?

别说谁变了你拦得住时间么 提交于 2019-12-13 16:41:56
问题 I have a bot, let's say, NameOne in the bot framework. The app is already published an I wish to keep it that way. However, additionally, a customer wants the exact same bot but with different icon + Name. Is there a way to repackage this bot? Note: Just adding it to manifest editor only changes the bot name + icon in the notifications and some other places, but not in the main chat area. 回答1: There isn't an easy way to do this, no. Teams uses the App Id to distinguish the bot, so you'd have

Is it necessary for a microsoft teams bot to be accessible publicly?

拜拜、爱过 提交于 2019-12-13 04:13:17
问题 In "Get started on the Microsoft Teams platform with C#/.NET and App Studio" its stated that Remember that apps in Microsoft Teams are web applications exposing one or more capabilities. For the Teams platform to load your app, your app must be reachable from the internet. Is it enough to have the application available for the user who is working with teams (like in the local network) or does the internet mean the internet here? 回答1: When user types in command in chat textbox in Microsoft

Is it possible to access custom tabs in 1:1 chats in MS Teams?

久未见 提交于 2019-12-13 04:10:12
问题 I am looking for a way to add a custom tab to 1:1 conversations in MS Teams. The documentation is a little contradicting on this topic: Currently, you can add one or more static tabs to your app's "personal scope" experience, accessed via the app bar or alongside your app's bot conversation. From Create a static tab in Microsoft Teams and Microsoft Teams supports tabs in either: Teams - (channel) ... Personal - (1:1 conversations or chats) ... From Teams scopes for tabs I have tried building

Operation returned an invalid status code 'Forbidden' when calling GetConversationMembersAsync for 1:1 private conversation

三世轮回 提交于 2019-12-13 03:45:39
问题 Using the "Hello World" Microsoft Teams application sample from here: https://github.com/OfficeDev/msteams-samples-hello-world-csharp Trying to get a list of participants in a personal Microsoft Teams 1:1 chat after an action command from a messaging extension is invoked. Specifically, I need the e-mail address of the other participant, where I am the first participant. This is the code from the messages controller: [BotAuthentication] public class MessagesController : ApiController {

How to get a channelId from an exchange item created for MSTeam team messages?

爷,独闯天下 提交于 2019-12-13 03:25:55
问题 Messages in MSTeam appears in group/team mailbox in Conversation History > Team Chat folder. In case of a team/channel message,I didn't see an attribute to determine channelID a message item is associated with. The subject of the message item have channelname (for channel other than general) but channelname can change. So subject is not reliable to derive the channel info. Is there any attribute to retrieve the channelId given a msteam message item in exchange. Here is the MS TEAM named test1

Adaptive Cards Support for Microsoft Teams

混江龙づ霸主 提交于 2019-12-13 02:49:02
问题 I have integrated a the MSFT chatbot with Teams, i am able to connect and interact, however for response that are based on Adaptive Cards, i get the below error "The specified card version is not supported." Any idea when the adaptive cards be supported with MSFT teams. Environment: Adaptive Cards v 0.5.1.0 回答1: Adaptive cards are now supported in Microsoft Teams (on desktop and web). A couple of things to note: You're using the old version of the nuget package. Please use this one: https:/