0

Is it possible to connect a Google Chat room using Azure devOps WebHooks?

Thanks

  • Hi Guillaume Courtonne, Did you get a chance to implement the solution that I suggested? Were you able to resolve? If my reply helped, appreciate for [marking it as an answer](https://meta.stackexchange.com/questions/5234/how-does-accepting-an-answer-work) which will also help others in the community. – PatrickLu-MSFT Dec 04 '20 at 09:39

1 Answers1

1

Web Hooks in Azure DevOps provide a way to send a JSON representation of an event to any public endpoint (HTTP or HTTPS).

But it's not able to directly contact Google chat room with Azure DevOps. Cause DevOps sends a JSON message in a format that Chat is not able to understand. Which means they do not talk to each other by default.

We need a way to transform the message and tie those two services together. There are a lot of options for that. We could use a 3rd-party tool Zapier.

It allows to easily integrate various services and APIs and I highly recommend it, although it is a subject for another post.

You could refer this step by step tutorial-- Azure DevOps integration with Google Hangouts Chat

PatrickLu-MSFT
  • 49,478
  • 5
  • 35
  • 62