Is there a way to implement a custom endpoint for my bot in node.js?. I saw the same for C# but it seems to to be implemented in node.js.
Here is the link to the C# implementation: Configure Custom Endpoint for Botframework Bot
A part from this, in the portal there was an option to connect the bot to an azure function, but I don't see it now. Here is the post where is saw it, on the step 3: https://blogs.msdn.microsoft.com/waws/2018/04/22/azure-bot-function/
Here is the C# code to implement and get a custom endpoint, the one it would be great to have in Node.js:
httpConfiguration.MapBotFramework(botConfig =>
{
botConfig.BotFrameworkOptions.Paths = new BotFrameworkPaths()
{
BasePath = "/bot",
MessagesPath = "/john"
};
});