Librería Textveloper para Node.js
$ npm install textveloper
import Textveloper from 'textveloper';
const sms = new Textveloper({
cuenta_token: '<CUENTA-TOKEN>',
aplicacion_token: '<APLICACION-TOKEN>'
});
sms.enviar({
telefono: '04141234567',
mensaje: 'Probando la librería Textveloper.'
}, function(error, respuesta) {
if (error) {
// hacer algo con el error.
}
// hacer algo con la respuesta.
});
Licencia MIT ©️ 2017 Jobsamuel Núñez