Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
body: reply,
extension: {
save_to_history: 1
}
};
QB.chat.send(userId, answer);
})
}
}
}
};
// Create QuickBlox session
QB.createSession({
login: CONFIG.user.login,
password: CONFIG.user.password
}, (createSessionError, res) => {
if(createSessionError) {
console.error('[QB] createSession is failed', JSON.stringify(createSessionError));
process.exit(1);
}
// Connect to Real-Time Chat
QB.chat.connect({
userId: CONFIG.user.id,
password: CONFIG.user.password
}, (chatConnectError) => {
if (chatConnectError) {
console.log('[QB] chat.connect is failed', JSON.stringify(chatConnectError));
process.exit(1);