jinasonlin / aliyun-sms

aliyun-sms nodejs

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

阿里云短信服务 for Nodejs

    npm install jinasonlin/aliyun-sms
var SMS = require('aliyun-sms');

var sms = new SMS({
  AccessKeyId: 'testid',
  AccessKeySecret: 'testsecret'
});

sms.send({
  /**
   * example/sample
   */
}, function (error, body) {
  if (error) throw new Error(error);

  console.log(body);
});

About

aliyun-sms nodejs


Languages

Language:JavaScript 100.0%