Teams Bot
15 TopicsProcessing replies to a thread and forward them to an external application
Hi, I'd like to implement a solution in Teams and would appreciate some input on what's the best way to use. The use case looks like this: 1) A web server hosts a forum. A user of that forum starts a new thread in that forum by creating a post. 2) The web server forwards the content of the initial post that started the thread to Teams where an application (a bot or webhook etc.) uses that data to start a thread in a certain Teams channel. 3) Users in that channel can then reply to that thread and their replies are forwarded to the web server where they are posted as replies to the thread in the forum. 4) When a user replies in the forum of the web server, then that reply is send to the Teams application and posted as a reply in that Teams channel thread. So far it seems that the challenging part of that use case is that the Teams application (be it a bot or a webhook) needs to be able to parse a reply to the thread that it created. Several documentations mention this: "Bots in channel and group chat conversations require the user to @mention the bot to invoke it in a channel." Does that mean that, even when replying to a thread that the bot started, every user still has to @mention the bot so that the reply gets processed by the bot?6.4KViews0likes3CommentsMS-Teams Graph | listing all callID's or the call history of a member | call duration
dear wonderful people , for a small intern project I want to implement the call duration of the ms-teams into the customer relationship management system database - I don't manage to list all callID's to then get the startDateTime & endDateTime of the microsoft.graph.callRecords segment. - what is the most convenient way to get the list of all user IDs of my organization? - how do I get the list of all call IDs? - how do i get all call durations or the call history of a member? - how do I subscribe to an update for each call made by a user in the group? - how do I write the session data to the database? Thank you to anyone who can help me. I have been dealing with this for a while and am currently trying to find a solution with CQD and PowerBiConnect. Im willing to pay a pocketmoney of 100-150€ or more for a working solution proposal and the willingness for light verbal support if I can't get the implementation right. Greetings from Germany4.9KViews0likes2CommentsNew Microsoft Teams issue, This bot is disabled. Contact your IT admin for more information
This issue is happening only on new Microsoft Teams desktop application for some selected users. It works fine with old Teams classic and new browser application for all users. Senario: When an effected users click on adaptive card button, user is getting error "This bot is disabled. Contact your IT admin for more information". Also issue gets resolved automatic after few hours. Then some other set of users start facing the same issue.4.1KViews0likes12CommentsCan't access bot inside shared channel
I've built an application for the Microsoft Teams app and published it in my organization using the Developer portal. I want to access the bot inside a team's shared channel but cannot do so. I've also provided "sharedChannels" inside the supportedChannelTypes property in the manifest but still, it isn't working. The manifest of my application looks somewhat like this: { "$schema": "https://developer.microsoft.com/en-us/json-schemas/teams/v1.15/MicrosoftTeams.schema.json", "version": "1.0.1", "manifestVersion": "1.15", "id": "10d58ca5-e2fd-4bb0-b488-ec31a1e071e5", "packageName": "Bot", "name": { "short": "Bot", "full": "Application" }, "developer": { "name": "Organization", "websiteUrl": "https://example.com/", "privacyUrl": "https://example.com/privacy", "termsOfUseUrl": "https://example.com/termsofuse" }, "description": { "short": "Test application", "full": "Test application." }, "icons": { "outline": "outline.png", "color": "color.png" }, "accentColor": "#60A18E", "configurableTabs": [ { "configurationUrl": "https://test.com/configure", "canUpdateConfiguration": true, "scopes": [ "team" ] } ], "bots": [ { "botId": "bot-id", "scopes": [ "groupchat", "team", "groupChat" ], "commandLists": [ { "commands": [ { "title": "register", "description": "register" } ], "scopes": [ "team" ] } ], "isNotificationOnly": false, "supportsCalling": false, "supportsVideo": false, "supportsFiles": false } ], "validDomains": [ "test.com" ], "defaultGroupCapability": { "team": "bot", "groupchat": "bot", "meetings": "bot" }, "authorization": { "permissions": { "orgWide": [], "resourceSpecific": [] } }, "supportedChannelTypes": [ "sharedChannels", "privateChannels" ] }Solved2.6KViews0likes6CommentsQuery on MS Teams Custom Bot Registration Channel
Hi All, We have a requirement to develop a MS Teams Custom Bot and currently it's possible to host a MS Teams Custom Bot on any platform as long as the endpoint is open to be accessible over Internet, however, we wanted to check if it's possible to register MS Teams Custom Bot elsewhere other than the default Azure bot channel? Thanks.1.4KViews0likes3CommentsREST API to send an adaptive card in MS Teams Bot
I want to send an adaptive card to a user, who has the bot that I am building on MS teams, by triggering an API whose body will have conversationId for the bot so that the card is sent only to that user. Would be of a great help if somebody can help me out with this.700Views0likes0CommentsTeams Bot App debugging locally Listener function unable to start error
Hi, I have used the following guide to set up a Teams bot with Cron trigger to test out the abilities of the Teams Development toolkit. https://learn.microsoft.com/en-us/microsoftteams/platform/toolkit/toolkit-v4/debug-local-vs I followed each step and all was well until the end when attempting to debug locally the function app could not fire its cron trigger and printed out the error "The listener for function 'NotifyTimerTrigger' was unable to start" and "No connection could be made because the target machine actively refused it. (127.0.0.1:10000)" I haven't been able to find anything I did wrong or others who have had this same issue. Any guidance would be appreciated.457Views0likes2Comments