https webhook 不工作 - skypebot

https webhook not working - skypebot

如果我使用 ngrok webhook 然后从 skype bot 调用服务器但是如果我将 webhook 更改为我的实际 https://example.com/skbotnode then its not working, even i am not getting any call from skype bot to my server.

谁能帮我解决这个问题?

我正在使用带有 nodejs 的 Skype 机器人。

我尝试了很多东西,最后它在虚拟主机上对我有用。 使用 ProxyPass,我们可以将默认端口上来自 skype bot 的请求转发到节点服务器。

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