Skip to content

Instantly share code, notes, and snippets.

@andrewarosario
Created September 21, 2020 01:04
Show Gist options
  • Save andrewarosario/ac9e127e98712da4ad2701a6d4e3d3c1 to your computer and use it in GitHub Desktop.
Save andrewarosario/ac9e127e98712da4ad2701a6d4e3d3c1 to your computer and use it in GitHub Desktop.
const venom = require('venom-bot');
venom
.create()
.then((client) => start(client));
function start(client) {
client.onMessage((message) => {
if (message.body === 'Oi' || message.body === 'Olá') {
client
.sendText(message.from, 'Olá! Tudo bem com você?')
.then((result) => {
console.log('Result: ', result); //retorna um objeto de successo
})
.catch((erro) => {
console.error('Erro ao enviar mensagem: ', erro); //return um objeto de erro
});
}
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment