MS teams integration
Hi everyone, I’m researching how to integrate Microsoft Teams chat to receive alerts/notifications from a backend service. Does anyone have any ideas on how to do this or know of any useful resources? My backend service is in .NET 8. Thanks!
2 Replies
The simplest way is probably a webhook
https://support.microsoft.com/en-us/office/create-incoming-webhooks-with-workflows-for-microsoft-teams-8ae491c7-0394-4861-ba59-055e33f75498
https://learn.microsoft.com/en-us/connectors/teams/?tabs=text1%2Cdotnet#microsoft-teams-webhook
Create incoming webhooks with Workflows for Microsoft Teams - Micro...
Post a workflow to a channel or chat when a webhook request is received in Microsoft Teams.
Thank you
@jcotton42 I created a incoming webhook with workflows and I now send messages from my service using the url that was generated by the workflow. However I was wondering is there a way to make this more secure I read that you could use Microsoft graph API but I haven’t really found much examples of how to do it. Do you have any suggestions?