My current implementation does not return anything useful such as an error message so I am a bit stuck.
method: "POST",
path: '/api/messages',
handler: status
My status function is a simple function:
const status = function (request, reply){
return connector.listen(request.raw.req, request.raw.res);
};
also from using the emulator the messages just seem to send and timeout with no log information.
The solution was given to me by Maxpert from the github repo of the Microsoft BotBuilder framework.