-
Notifications
You must be signed in to change notification settings - Fork 0
SMS Service
Gihan Karunarathne edited this page Jun 17, 2014
·
1 revision
SMS Service.
var swisher_client = require('swisher-client'),
sms = swisher_client.SMS("7780aa6c75f9439ed416e0501294a3831abe1a05", "8", {
grantType : "access_token",
scope : "test"
});Parameters:
Telephone number.
Message to be send.
sms.send("00947xxxxxxxx", function(err, result){
if (err) {
// Handle Error Here
} else {
// -- Code Here
}
});