Bots
18 Topicsmicrosoft-teams-company-communicator-app
Hello All, I need to get confirmation on the below points regarding to company communicators that will be deployed to another customer by the next. Is it applicable to automatic schedule sending messages ? Is it applicable to view who read the messages not only numbers of received or failures messages? can anyone guide meSolved6.5KViews2likes3CommentsBug: Adaptive card does not works on Microsoft Teams's mobile app
Hello, We got a problem with adaptive card, we are using an Action.Submit button where it invoke a message request for our bot, this works fine on web but on mobile does not works, button keep on feedback and does not do any request. This is our JSON: { contentType:'application/vnd.microsoft.card.adaptive', content: { "$schema": "http://adaptivecards.io/schemas/adaptive-card.json", "version": "1.3", "body": [ { "type": "ColumnSet", "columns": [ { "type": "Column", "items": [ { "type": "Image", "url": `https://digital-assets.projectcor.com/integrations/${statusUrl}-d-50.png`, "spacing": "None" } ], "width": "50px" }, { "type": "Column", "items": [ { "type": "TextBlock", "isSubtle": true, "text": `${companyName} > ${chipName}`, "color": "Dark", "wrap": true }, { "type": "TextBlock", "spacing": "None", "text": task.title, "color": "Dark", "size": "ExtraLarge", "weight": "Bolder", "wrap": true }, { "type": "TextBlock", "isSubtle": true, "text": `${lang.priority}: ${utils.getPriorityName(task.priority,locale)}`, "color": "Dark", "wrap": true }, ], "width": "stretch" } ] }, { "type": "ColumnSet", "separator": true, "spacing": "Medium", "columns": [ { "type": "Column", "items": [ { "type": "ColumnSet", "columns": [ { "type": "Column", "items": [ { "type": "Image", "url": "https://digital-assets.projectcor.com/integrations/deadline-2.png" } ], "width": "25px" }, { "type": "Column", "items": [ { "type": "TextBlock", "text": "Deadline", "color": "Dark", "weight": "Bolder", "wrap": true }, { "type": "TextBlock", "text": `${date ? date : 'No date'}`, "color": "Dark", "wrap": true } ], "width": "110px" }, { "type": "Column", "items": [ { "type": "Image", "url": "https://digital-assets.projectcor.com/integrations/usr.png" } ], "width": "25px" }, { "type": "Column", "items": [ { "type": "TextBlock", "text": "Project manager", "color": "Dark", "spacing": "Large", "weight": "Bolder", "wrap": true }, { "type": "TextBlock", "text": `${taskPm ? taskPm : 'No project manager'}`, "color": "Dark", "wrap": true } ], "width": "180px" } ] } ], "width": "stretch" } ] }, { "type": "ColumnSet", "spacing": "Medium", "columns": [ { "type": "Column", "items": [ { "type": "Image", "url": "https://digital-assets.projectcor.com/integrations/usr.png" } ], "width": "25px" }, { "type": "Column", "items": [ { "type": "TextBlock", "text": lang.collaborators, "color": "Dark", "spacing": "Large", "weight": "Bolder", "wrap": true }, { "type": "RichTextBlock", "inlines": [ { "type": "TextRun", "text": utils.collaboratorsArray(task.collaborators) } ], "spacing": "Small", "height": "stretch", } ], "width": "300px" } ], "separator": true }, { "type": "ActionSet", "actions": [ { "type": "Action.Submit", "title": lang.comment, "data": { "msteams": { "type": "invoke", "value": { "type": "task/fetch", "action": "createComment", "route": `tasks/${task.id}` } } }, "style": "positive" }, { "type": "Action.OpenUrl", "title": lang.view_cor, "url": `https://${subdomain}.${utils.getWebUrl()}/tasks/${task.id}` }], "separator": true, "height": "stretch", "spacing": "Medium", "horizontalAlignment": "Center" } ], } Comment button of invoke type and action createComment has the issue. Thanks!4.4KViews1like9CommentsTeams Meeting - Content share feedback
Hello all, I am very new to Teams bots, from what I've found so far this doesn't seem to be possible, but I'm wondering if there is any way to get feedback from a Teams meeting when someone in the meeting starts or stops sharing content? Basically I am trying to integrate a Teams room system with other controls, and I would ideally have a "content sharing has stopped" type event trigger something else in the room.1.7KViews1like5CommentsChatbot link is not working suddenly
Hello Team, I created a Chatbot and shared it within my organization via teams and it was working fine. But suddenly from yesterday we are receiving app does not exist / your organization might have blocked it. This looks like a global issue with custombots an API is throwing an error. Can you please take a look at this and fix it ASAP? API throws 400 error, attached.2.4KViews1like4CommentsConfigure the proxy web application to forward the request to Python Bot application
I created MS teams bot Python application, my security team requesting to configure the proxy web application to forward the request to Bot application (Like bot data flow as MS team Client-->Azure Bot Service-->Webserver-->Application Server) Note that there is firewall between Azure Bot Service and Webserver. Here my questions, how to configure proxy webserver to forward the request to Python Bot Application hosted on application server. Can we use IIS or Apache ? How to configure the webservers to forward the request and send the response to MS Teams Client? Thanks, SSN1.6KViews1like2CommentsError updating Teams App - ID in manifest doesn't match installed
I have created a 'Hello World' Teams app following the getting started guide. This seemed to work as expected and I was able to add the application to my app catalog in the Teams client. However, I am having problems updating the application without deleting and re-adding it. For example: Go to Teams App Studio -> Manifest Editor Select the Hello World app Change only the version number (e.g. 1.0.0 to 1.0.1) Go to Test and Distribute and download the package. Go to Apps and click the '...' button next to the installed Hello World 1.0.0 application. Select Update and choose the package zip downloaded in step 4. At this point, I get an error: The id in the manifest doesn't match with the app being updated. Comparing the manifest.json file between the 1.0.0 and 1.0.1 app, the only thing that is different is the "version" field. Everything else, especially the "id" value is identical. I get the same problem when I manually alter the application version in the manifest.json and attempt to update the app. Why am I not able to update an installed application? Am I missing something and these steps are just not valid?Solved12KViews1like3CommentsIs there any way to show iframe content in ms teams chat?
I have been trying to send iframe as a response from bot framework, my usecase is to display dynamic charts which are generated from portal. I'm able to send iframe but the bot message body is empty instead of iframe content.11KViews1like2Comments