All Projects → TooBug → smsGateway

TooBug / smsGateway

Licence: other
Node.js SDK of https://smsgateway.me . Turn your android phone to a programmatical sms gateway.

Programming Languages

javascript
184084 projects - #8 most used programming language

SmsGateway

npm npm

SmsGateway.me Node.js wrapper.

The service of SmsGateway.me can turn your android phone to a sms tunnel. You can programmatically send or receive messages with their RESTful API.

Docs

https://toobug.github.io/smsGateway/docs

Examples

var SmsGateway = require('smsgateway');

var gateway = new SmsGateway('[email protected]','password');

gateway.getDevices().then(function(data){
	console.log('getDevices Success');
	console.log(data);
}).fail(function(message){
	console.log('failed',message);
});

Change Log

v0.1.2 (2014-12-24)

  • Added .sendMessageToNumber() .sendMessageToManyNumbers() .sendMessageToManyContacts().
  • Added docs.

v0.1.0 - v0.1.1 (2014-12-08)

  • First release
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].