在 Ionic 2 中发送短信,而无需使用 Cordova 插件



美好的一天,我想在不使用Cordova短信插件的情况下自动发送短信。我想在每位客户注册应用程序后将验证码发送给他们。有什么可能的方法吗?希望你能帮助我。提前谢谢你。我正在使用离子2。

如果你有一个正在运行的后端,这很容易。此示例将 Node 与 Nexmo SMS API 结合使用。

app.post('/', (req, res) => {
  res.send(req.body);
  const toNumber = req.body.number;
  const text = req.body.text;
  nexmo.message.sendSms(
    NUMBER, toNumber, text, {type: 'unicode'},
    (err, responseData) => {
      if (err) {
        console.log(err);
      } else {
        console.dir(responseData);
      }
    }
  );
 });

有关完整示例,请参阅本文。

相关内容

  • 没有找到相关文章

最新更新