Teams Toolkit
7 TopicsIssue with Red Error Pop-up in Microsoft Teams Tab Application
Hello, I developed a Microsoft Teams tab application where I add a page in a static tab (using the contentURL). While the page loads successfully, a red error pop-up consistently appears after 30-45 seconds. This happens with both static and configurable tabs. In configurable tabs, even after saving and loading the page, the pop-up still appears. It has no error message and can be dismissed by clicking the 'X' but reappears within 30-45 seconds after switching between apps or chats. Please see the attached screenshot for reference. I have tested this across local, development, and production environments, and it persists with all non-local URLs (i.e., pages outside my tab). The behavior is the same on both desktop and browser versions of Teams. Initially, I suspected Razor code might be the issue, but the problem persists even with a hardcoded URL. The app package was successfully validated using the Microsoft Teams App Validator, but the error pop-up remains. Could you please help me resolve this issue as soon as possible? Thank you.503Views0likes9CommentsLink Unfurling Doesn't trigger on pasting link
Hi, I have developed a Bot/Message Extension App for use in our organization. Using Teams Toolkit, I have created a project and using Typescript for it. I am adding the link unfurling feature to my app. When I pasted a link to the chat, the "handleTeamsAppBasedLinkQuery" function doesn't get trigger directly on paste but when I edit the link or send the message, the function gets triggers. Please help on this.457Views0likes2CommentsHow to deploy a Bot/Message extn app developed with Teams Toolkit (5.6) to a self-managed server?
I'm developing a Bot/Message Extension App for use in our organization. Using Teams Toolkit, I have created a project and using Typescript for it. Local testing is automatically supported from app registration without much consideration, so it seems very convenient. However, when I try to deploy this, I am a bit confused. Teams Toolkit seems to support deployment according to Azure Bot Service by default.(.dev) I can't use the Bot Service for a number of reasons and should consider running the bot on a self-managed host. First of all, is this possible? In this case, what steps should I take in Teams Toolkit, Azure portal, Teams development portal? If this is not possible with Teams Toolkit, how should I configure the bot's hosting? I have checked, we have to mention the endpoint URL but seems confuse to where it has to be mention.816Views0likes5CommentsUnit Test Teams Bot/Message Extension App created using Teams Toolkit
Hi, I have created a Teams Bot/Message Extension App using Teams Toolkit using VS Code. I want to unit test my bot. How can I do it, as I couldn't find any documentations for it. And also it is necessary to publish it to the Teams Store. Thanks.428Views0likes0CommentsInserting the final response directly into the chat in a Teams Messaging extension
I am working on an action-based messaging extension app for teams. My action can be invoked from a message/compose/commandBox. After submitting the action, currently the adaptive card I am sending is getting inserted into the chat and the user must manually click on send. I want the message to be directly inserted into the chat. Microsoft documentation says, "If the message extension is invoked from the compose box or directly from a message, your web service can insert the final response directly into the channel or chat. In this case, the Adaptive Card comes from the bot, the bot updates it, and replies to the conversation thread if needed. You must add the bot object to the app manifest using the same ID and defining the appropriate scopes." But I have no idea how to do this. Yes, we will add the bot to manifest, what next? Currently, I am returning my adaptive card using the following code : async handleTeamsMessagingExtensionSubmitAction(context, action) { switch (action.commandId) { case "executeActions": return await executeActions(context, action); default: throw new Error("NotImplemented"); } } async function executeActions(context, action) { const data = action.data; const adaptiveCard = createAdaptiveCard(data); const attachment = { contentType: adaptiveCard.contentType, content: adaptiveCard.content, preview: adaptiveCard, }; return { composeExtension: { type: "result", attachmentLayout: "list", attachments: [attachment], } } }; Could someone please help how can I tweak the codes, to send messages into the chat directly? So that, the user should not have to click on send every time. I don't mind if the message comes from a bot, into the chat.315Views0likes0CommentsSearch and Filter adaptive cards in bot
Hello Team, Our requirement is as follows: Requirement : We have created a bot using teams toolkit. We further want to add a search bar within the bot which will search adaptive cards and filter them. As in show only searched cards and hide rest. Is it possible to add search bar in bot? One option we could think of is creating tab using fluent so that we can search the adaptive cards. Is their any way to directly implement it in a bot? Thanks!1.2KViews0likes5CommentsMicrosft Teams Chatbots
Hi, I am new to developing microsoft teams chatbots and I am trying to ask the user a question and then process the information, however my app simply asks the user a question and then begins processing without waiting for a response from the user. Should I use waterfall dialog to solve this problem and if so is there a link someone could point me to that would be helpful. ThanksSolved562Views0likes1Comment