Home

Awesome

getsmscode

API client for getsmscode.com.

NPM Build Status JavaScript Style Guide

Install

This module requires node >= 8.

npm install --save getsmscode

You'll need to setup a getsmscode.com account and add some money to your account before using this module.

Usage

const GetSMSCodeClient = require('getsmscode')

const client = new GetSMSCodeClient({
  username: '...',
  token: '...'
})

const number = await client.getNumber({
  service: 'google'
})

// give this number to third-party service such as google...
// third-party service sends SMS code to the given number...

const sms = await client.getSMS({
  service: 'google',
  number: number
})

Note: there may be variable amounts of latency between giving your number to the service and the SMS code being received. If no valid messages are returned, it is recommended that you retry client.getSMS with an exponential timeout. Be careful not to call the API too fast, however, as getsmscode imposes strict rate limits.

API

<!-- Generated by documentation.js. Update this documentation by updating the source code. -->

GetSMSCodeClient

Type: function (opts)


login

Logs in to test auth and fetches an account summary.

Type: function (): Promise


getNumber

Acquires a temporary handle on a mobile number usable for the given service.

You must specify either opts.service or opts.pid.

Type: function (opts): Promise


getNumbers

Returns a list of { number, service } objects currently in use by this account.

Type: function (): Promise


getSMS

You must specify either opts.service or opts.pid.

Type: function (opts): Promise


addNumberToBlacklist

Adds a number to this account's blacklist for the given service.

You must specify either opts.service or opts.pid.

Type: function (opts): Promise

Related

Disclaimer

Using this software to violate the terms and conditions of any third-party service is strictly against the intent of this software. By using this software, you are acknowledging this fact and absolving the author or any potential liability or wrongdoing it may cause. This software is meant for testing and experimental purposes only, so please act responsibly.

License

MIT © Travis Fischer

Support my OSS work by <a href="https://twitter.com/transitive_bs">following me on twitter <img src="https://storage.googleapis.com/saasify-assets/twitter-logo.svg" alt="twitter" height="24px" align="center"></a>