1. Description
Alibaba Dayu provides verification codes, SMS notifications, voice and other services. It feels very convenient after use. It is worthy of being an Alibaba product.
Recently I want to develop a function of NodeJS sending SMS notifications. Alidayu-node is not used here (I didn’t know this existed when I started doing it. It would be simple if I use Alidayu-node.). I create a signature myself and implement it. SMS sent.
The official document explains the steps for generating a signature, but the third step:
3. Connect the string. Connect the parameter name and parameter value, and add secret
at the beginning and end.There is an error (it is wrong to add secret at the beginning and end)
2. Code implementation
Generate sign
/** * 根据淘宝官网提供的教程 * http://open.taobao.com/doc2/detail.htm?articleId=101617&docType=1&treeId=1 */ var md5 = require("blueimp-md5"); // 淘宝应用App信息(换成自己的) var config = { AppKey: '233002**', AppSecret: '3403636b338e100399**' }; exports.config=config; var dySign = function (obj) { // 生成时间戳 var time = new Date(); var timestamp = time.getFullYear() + "-" + ("0" + (time.getMonth() + 1)).slice(-2) + "-" + ("0" + time.getDate()).slice(-2) + ' ' + ("0" + time.getHours()).slice(-2) + ":" + ("0" + time.getMinutes()).slice(-2) + ":" + ("0" + time.getSeconds()).slice(-2); obj.timestamp = timestamp; // 程序key obj.app_key = config.AppKey; // 参数数组 var arr = []; // 循环添加参数项 for(var p in obj){ arr.push(p + obj[p]); } // 2、按首字母升序排列 arr.sort(); // 3、连接字符串 var msg = arr.join(''); // console.log(msg); // 生成签名 sign hmac var sign = md5(msg, config.AppSecret); // 返回 return sign.toUpperCase(); } module.exports.dySign = dySign;
Concatenate strings and send requests
var signGenerate = require('./create_dysign'); var http = require('http'); var qs = require('querystring'); var alidayuUrl = 'http://gw.api.taobao.com/router/rest'; // 短信发送的参数对象 var obj = { format: 'json', method: 'alibaba.aliqin.fc.sms.num.send', v: '2.0', timestamp: '2016-1-16 02:33:30', partner_id: 'top-sdk-nodejs-20160116', rec_num: '15110****', //手机号多个以逗号间隔 sign_method: 'hmac', sms_type: 'normal', sms_param: '{"code":"giscafer","product":"alidayu短信测试"}', sms_free_sign_name: '身份验证', sms_template_code: 'SMS_4725038' } //生成签名并拼接请求参数链接 var sign = signGenerate.dySign(obj); console.log('签名:', sign); obj.sign = sign; obj.app_key = signGenerate.config.AppKey; var arr = []; for (var p in obj) { arr.push(p + '=' + obj[p]); } var msg = arr.join('&') var sendurl = alidayuUrl + '?' + msg; console.log('完成请求地址:' + sendurl); /** * 短信发送请求测试 */ var params = qs.stringify(obj); var options = { hostname: 'gw.api.taobao.com', port: 80, path: '/router/rest?' + params, method: 'GET' }; var req = http.request(options, function (res) { console.log('STATUS: ' + res.statusCode); // console.log('HEADERS: ' + JSON.stringify(res.headers)); // console.log(req.path); res.setEncoding('utf8'); res.on('data', function (chunk) { console.log('RESULT: ' + chunk); }); }); req.on('error', function (e) { console.log('ERROR: ' + e.message); }); // write data to request body req.write("执行完毕!"); req.end();
Request result

Vercel是什么?本篇文章带大家了解一下Vercel,并介绍一下在Vercel中部署 Node 服务的方法,希望对大家有所帮助!

gm是基于node.js的图片处理插件,它封装了图片处理工具GraphicsMagick(GM)和ImageMagick(IM),可使用spawn的方式调用。gm插件不是node默认安装的,需执行“npm install gm -S”进行安装才可使用。

今天跟大家介绍一个最新开源的 javaScript 运行时:Bun.js。比 Node.js 快三倍,新 JavaScript 运行时 Bun 火了!

大家都知道 Node.js 是单线程的,却不知它也提供了多进(线)程模块来加速处理一些特殊任务,本文便带领大家了解下 Node.js 的多进(线)程,希望对大家有所帮助!

在nodejs中,lts是长期支持的意思,是“Long Time Support”的缩写;Node有奇数版本和偶数版本两条发布流程线,当一个奇数版本发布后,最近的一个偶数版本会立即进入LTS维护计划,一直持续18个月,在之后会有12个月的延长维护期,lts期间可以支持“bug fix”变更。

node怎么爬取数据?下面本篇文章给大家分享一个node爬虫实例,聊聊利用node抓取小说章节的方法,希望对大家有所帮助!


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver Mac version
Visual web development tools

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Notepad++7.3.1
Easy-to-use and free code editor

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Mac version
God-level code editing software (SublimeText3)
