This repository was archived by the owner on Feb 1, 2023. It is now read-only.

Description
Hi, your website is refusing me when sending a request. This was working a couple of weeks ago. Here my NodeJS code:
const recastai = require('recastai').default;
const myBotToken = '7342ac85a271995d596f6d21acfa0b88';
function setRecastBot(botToken){
//let recastClient = new recastai('7342ac85a271995d596f6d21acfa0b88');
let recastClient = new recastai(botToken);
return recastClient;
};
let recastBot = setRecastBot(myBotToken);
recastBot.request.analyseText("Hello").then((response) => {
console.log('response:');
console.log(response);
console.log('intent:');
console.log(response.intent());
});
error:
(node:12532) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 1): Error: connect ECONNREFUSED 54.194.194.229:443
Could you please assist?