How to send sms using javascript or angular or node.js [closed]

-1

I need a method or api that sends sms for free, it can be from my same tim number (I have sms plan), I searched and just found some easy to use payments. I am preparing for a university hackathon and I need to produce this to have a differential in the final product. The app will be in angularjs, ionic and the apis in nodejs. Is there any way to do it?

    
asked by anonymous 20.10.2017 / 17:53

1 answer

2

I know using Firebase and Zapier.

var sendSMSText = function (recipient) {
var smsQueue = new Firebase('https://.firebaseio.com/sms/' + recipient.phone);
smsQueue.set({
  name: recipient.name,
  phone: recipient.phone
}, onSuccess)
};

Visit this blog to learn more: link

Or

Using the phone directly: link

    
20.10.2017 / 17:55