I am working on Bot technology, I had developed one simple skype bot with skype calling feature using calling controller template through this below link.
https://docs.botframework.com/en-us/csharp/builder/sdkreference/calling.html
Before posted question here I read the below documentation about azure bot service.
https://docs.botframework.com/en-us/azure-bot-service/#navtitle
In the above link, all samples are related to only Messages but I want the Skype calling functionality using azure bot service.
Can you please tell me how to develop on simple bot with skype calling functionality using azure bot service concept?
-Pradeep
Here is the documentation for voice calling using the Azure Bot Framework. It states:
This involves instantiating a
CallingController
which then registers an event forProcessIncomingCallAsync
. Once you have answered the call using this method you can do things like play an audio file over the call, record what the caller says, or capture dialpad number entry.