0

我正在尝试使用 nodeJs 中的推送项目符号发送短信。从推送项目符号文档中,我得到了功能:“sendSMS”,可用于将消息作为 SMS 发送到手机。但是,当我运行代码时,它说“sendSMS 不是函数”。谁能帮我解决这个问题。

我的nodejs代码如下:

var pusher = new PushBullet('MY-API-KEY');

var options = {
source_user_iden: 'uj*******K',           
target_device_iden: 'uj***************q', 
conversation_iden: '+91 7********6',      
message: 'Hello!' };    

pusher.sendSMS(options, function(err, response) {
console.log(response); });
4

2 回答 2

1

你现在可能已经明白了,但看起来 NPMjs.com 上的包可能有点过时了。如果您直接从 GitHub 存储库安装,则可以使用 sendSMS() 函数。

以下是直接从 GitHub 安装的说明。 如何直接从 GitHub 安装 npm 包?

于 2016-09-15T23:25:52.307 回答
0

我已经使用这个包使用节点 js 发送短信

安装包:npm install springedge

使用包的示例代码(发送短信推送请求):

var springedge = require('springedge');

var params = {
  'apikey': '', // API Key 
  'sender': 'SEDEMO', // Sender Name 
  'to': [
    '919019xxxxxxxx'  //Moblie Number 
  ],
  'message': 'test+message'
};

springedge.messages.send(params, 5000, function (err, response) {
  if (err) {
    return console.log(err);
  }
  console.log(response);
});

它对我有用。

于 2017-07-13T09:31:24.323 回答