I'm wondering how I would connect a microsoft bot written in c# with a signalr chat. To be specific: I have a signalr chat in which users can talk to "coaches". But the bot has to listen to these chats in case the user asks the bot something (or other reasons the bot needs to do something). How would I do this?
Check out these resources that should give you enough combined information for you to build a connector for your bot to interact with SignalR.
activity
schema so you an correctly interpolate the data being passed to and from your bot.As you are probably aware, you need to build a service that allows your bot to connect to SignalR. This means authenticating against your SignalR service to retrieve a token or similar. Once that is complete, then it's a matter of the data being passed around. If you can successfully pass data, then it's configuring your bot to reply and send activities that SignalR can accept (for instance, a hero card may render while an adaptive card may not).
Hope of help!