Skip to content

Latest commit

 

History

History
48 lines (39 loc) · 800 Bytes

README.md

File metadata and controls

48 lines (39 loc) · 800 Bytes

Dependências

Instalação

  npm i node-webhookjs

Exemplo

const { telegram, teams } = require('node-webhookjs')
// Instance.<method>

Enviar mensagem de texto usando o telegram

function methodName(req, res) {
    try{
    	...
    }catch(error) {
        telegram({
          token: '<TOKEN>', 
          chatId: '<CHAT_ID>'})
          .send('Message')
          .then(() => {...})
          .catch(() => {...})
     }
}

Enviar mensagem de texto usando o teams

function methodName(req, res) {
    try{
    	...
    }catch(error) {
        teams({ url: '<URL>' })
          .send({message: "Teste"}, "nameMethod", "nameProject")
          .then(() => {...})
          .catch(() => {...})
     }
}