Twilio で SMS 通知を送信しようとしていますが、できません。通知オプション (「notificationOpts」) に追加した番号 (自分の番号) の 1 つにのみ通知を送信し、常に同じように発生します。それは私の番号でのみ機能しますが、追加した他の番号では機能しません。何が間違っているのかわかりません。
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));