Reputation: 1185
I am pretty new to Hangout concept. I have implemented various bot using Microsoft Bot framework. This time I need to implement and publish a Google Hangout Bot using this link. As Azure yet not provide Google hangout channel for Bot.
As per this documentation when I publish the Bot, It should be available to domain users to discover this Bot. But somehow I am not able to discover in Hangout. Initially I want to just be able to publish a default Bot and make it available to all users in domain and in chat room.
I think I am missing something here.
Things I have tried is just created an Bot in Microsoft Bot framework and published using this link.
Upvotes: 0
Views: 637
Reputation: 469
You'll need to create a connector/bridge to the hangouts API. Take a look at the interface on the docs Interface IConnector
You can choose whether to use the DirectlineAPI or create the connection on your own.
See an example of an implementation for line on this repo
Besides, you should make sure you have all the configurations ready on Google's side (the instructions are on the link you've posted)
Upvotes: 1