node.jsbotframeworkskypedeveloperskype-botsmicrosoft-skype-bot

https webhook not working - skypebot


If i used ngrok webhook then getting call from skype bot to server but if i changed webhook to my actual https://example.com/skbotnode then its not working, even i am not getting any call from skype bot to my server.enter image description here

can any one help me regarding this issue?

I am using skype bot with nodejs.


Solution

  • I tried so many things and finally its working for me with virtual host. With ProxyPass we can forward request coming from skype bot on default port to node server.

    <VirtualHost *:80>
       ProxyPass /bot http://localhost:8088
    </VirtualHost>