我正在尝试使用 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));