如何使用 Node.js 创建短信 API
How to Create SMS API using Node.js
我需要以短信的形式向我的应用程序用户发送通知和特殊消息。所以我想制作 SMS API。如何使用 node.js 创建它?
您可以使用nexmo communication API; 运行
npm install nexmo
包裹
const Nexmo = require('nexmo')
const nexmo = new Nexmo({
apiKey: '*****',
apiSecret: '*****',
});
var to = 'numberTo';
var from = 'brandName';
var text = 'someText';
nexmo.message.sendSms(from, to, text);
我需要以短信的形式向我的应用程序用户发送通知和特殊消息。所以我想制作 SMS API。如何使用 node.js 创建它?
您可以使用nexmo communication API; 运行
npm install nexmo
包裹
const Nexmo = require('nexmo')
const nexmo = new Nexmo({
apiKey: '*****',
apiSecret: '*****',
});
var to = 'numberTo';
var from = 'brandName';
var text = 'someText';
nexmo.message.sendSms(from, to, text);