0

我正在尝试使用 Twilio 发送短信通知,但我不能,它只向我添加到通知选项('notificationOpts')中的号码(我的号码)之一发送通知,并且总是发生相同的情况。它仅适用于我的号码,但不适用于我添加的其他号码。我不知道我做错了什么。

const accountSid = 'xxxxxxxxxxxxxxxxxx';
const authToken = 'xxxxxxxxxxxxxxxxxx';
const notifyServiceSid = 'xxxxxxxxxxxxxxxxxx';

const client = require('twilio')(accountSid, authToken);
const notificationOpts = {
  toBinding: JSON.stringify({
    binding_type: 'sms',
    address: '+00000',
  }),
  toBinding: JSON.stringify({
    binding_type: 'sms',
    address: '+00001',
  }),
  body: 'HI',
};

client.notify
  .services(notifyServiceSid)
  .notifications.create(notificationOpts)
  .then(notification => console.log(notification.sid))
  .catch(error => console.log(error));
4

1 回答 1

0

我刚刚尝试了代码,它在这里工作正常。您可能还在试用帐户上吗?试用帐户仅允许将号码发送到经过验证的号码,例如您自己的电话号码。

于 2019-04-23T12:13:43.967 回答