如何使用 Twilio 向多个号码发送通知?
How can I send notifications to multiple numbers with Twilio?
我正在尝试使用 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));
我刚刚尝试了代码,它在这里工作正常。你可能还在试用账户吗? The trial account only allows sending numbers to verified numbers 很可能喜欢你自己的 phone 号码。
我正在尝试使用 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));
我刚刚尝试了代码,它在这里工作正常。你可能还在试用账户吗? The trial account only allows sending numbers to verified numbers 很可能喜欢你自己的 phone 号码。