0
votes

Is there any way to send and receive messages asynchronously from a website to ms teams without bot intervention?

I have gone through Microsoft Graph API, there are some ms teams related APIs to read and send messages but those are synchronous apis.

Is there any way to implement socket programming or asynchronous APIs to send and receive?

1
MS Graph follows asynchronous programming. You can create a daemon app in the backend and use these APIs.Shiva Keshav Varma
Are you still looking for help?Shiva Keshav Varma
Yes shiva, actually is there any way to implement a socket for getting ms teams chats and send messages?kiran
Have you tried using incoming/outgoing webhooks? I think this will help you to address your issue. Please let us know if you have any questions.Manish-MSFT
@ShivaKeshavVarma are you still facing the issue?Saonti-MSFT

1 Answers

1
votes

Only available option to read chat messages via APIs is using Microsoft Teams Graph APIs.

Microsoft Teams app supports one or all of the following core capabilities:

  1. Tabs
  2. Messaging extensions
  3. Bots
  4. Webhooks and connectors

Please take a look at Understanding Teams app capabilities documentation for more details. Please feel free to add new comment on answer if you need more details.