In the above example, the bot does not connect to the skype server due to the wrong server:
serverUrl : "https://example.net"
You must specify a valid skype server:
serverUrl : "https://apis.skype.com"
You also specified the wrong uri API in server.post (well, that depends on the settings of your web hosting, but they were not provided, so I accept by default):
server.post('/skbot', skype.messagingHandler(botService));
For messaging you should use '/v1/chat' . Try this tutorial .
source share