1.0.3 • Published 5 years ago

hubtel-sms-node v1.0.3

Weekly downloads
1
License
ISC
Repository
github
Last release
5 years ago

hubtel-sms-node

A node wrapper around hubtel sms api. WIP

Installation

yarn add hubtel-sms-node

Usage

Sending message using hubtel

const hubtel = require('hubtel-sms-node')({
  clientId: 'your key here',
  clientSecret:  'your secret here'
});

let payload = {
  from: "Sample Message",
  to: '2330244161819',
  registeredDelivery: true,
  message: 'Yo, this should work.. hehe'
}

hubtel.sendSMS(payload).then((response) => {
 /* play with response */
}).catch(error => {
  /* handle errors here */
})

Todo

  • Update docs to include type of response recieved after making request.
  • Check status of messages sent (add new method)
  • Add a 5 second break between requests to make sure we are following api rules.
  • Sanitize and encode input
  • Write tests for library
  • Use a seperate method to build url
1.0.3

5 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago