1.0.3 • Published 7 years ago

ali-sms v1.0.3

Weekly downloads
4
License
MIT
Repository
github
Last release
7 years ago

ali-sms

Build Status

Nodejs SDK for Aliyun SMS service

Install

npm install ali-sms --save

Usage

const sms = require("ali-sms");
const accessKeyID     = process.env.ALI_SMS_ACCESSKEYID;
const accessKeySecret = process.env.ALI_SMS_ACCESSKEYSECRET;

const config = {
  accessKeyID       : accessKeyID,
  accessKeySecret   : accessKeySecret,
  paramString       : {code: '123456'},
  recNum            : ['1891234567'],
  signName          : 'alibaba',
  templateCode      : 'SMS_28100008',
};
sms(config, (err, body) => {
  console.log(err, body);
});

Config

paramtypedescription
accessKeyIDstringaccess key id, get from aliyun
accessKeySecretstringaccess key secret, get from aliyun
paramStringobjectali sms param which you have defined on aliyun sms dashboard
recNumarrayphone numbers of users
signNamestringali sms param, get from aliyun sms dashboard
templateCodestringali sms param, get from aliyun sms dashboard

Note

From 2017.06.22, Aliyun has upgraded the sms service. For a new sms user, Aliyun forces you using the new sms service. So, your sms dashboard should be https://dysms.console.aliyun.com/dysms.htm. But for an old sms user, you can still use the old sms service and your sms dashboard should be https://mns.console.aliyun.com/#/home/cn-hangzhou. If you are the old sms user. Please install version 1.0.2

npm install ali-sms@1.0.2