Questions tagged [microsoft-teams]

By utilizing the Microsoft Teams Developer Platform, you can seamlessly incorporate your app into the Microsoft Teams ecosystem. This can be achieved through Tabs that showcase your web content directly, Bots that interact with users in chat, and Connectors that distribute your notifications to channels. For helpful tips on maximizing the likelihood of receiving a quality answer to your questions, please refer to the README information provided.

What is the best method for setting up message scheduling for a Microsoft Teams bot based on different time

I am trying to figure out how to send messages to users from my bot at specific time intervals. Currently, I'm using agenda for scheduling messages, but I've run into an issue with the timezone discrepancy - agenda is 5:30 hours behind my timezone, causing ...

Tips for sending Python error notifications to Microsoft Teams using the Jenkins Office 365 connector webhook

I've been working on sending a python error message to a teams alerts channel, for example: File "Myfile/......../test.py". line 8 n = len(arr_)e SyntaxError: invalid syntax I have set up different exit codes based on whether the code throws an ...

How to Send Session Variables from Node.js to a SQL Server Function Call

Within a MS Teams BOT, I have successfully implemented dialog code that prompts users with a series of questions and then formats their responses within a session. session.send(`Details: <br/>Question1: ${session.dialogData.Question1} <br/>Q ...

Issues with obtaining the SSO authentication token from Microsoft Teams

Seeking assistance with obtaining the access token from Microsoft Teams. It works flawlessly in Postman with the same data, but when attempting to make a POST request in a React app, it fails. Below is the code snippet: useEffect(() => { debugger ...

What is the process for transferring information from a Microsoft Teams personal tab to a Microsoft Teams bot?

Is it feasible to share data such as strings or JSON objects from custom tab browsers to a Teams bot's conversation without utilizing the Graph API by leveraging any SDK functionality? ...

Encountering an error: TypeError - The class extending from an undefined value is not a valid constructor or null

I am currently working on developing a bot using the Microsoft Bot Framework that needs to be integrated with MS Teams. While trying to compile the code, I encountered an error stating "TypeError: Class extends value undefined is not a constructor or null. ...

Utilizing the Teams web app within my customized electron application

I've been developing an electron app and am trying to integrate the MS Teams web app into it. I've successfully displayed MS Word, MS Powerpoint, and other apps using window.loadURL(''), but I'm experiencing issues with MS Teams. Despite disabling nodeInte ...