gpt4 book ai didi

javascript - 使用 twilio Passthrough API 向多个号码发送消息

转载 作者:行者123 更新时间:2023-11-30 19:01:07 25 4
gpt4 key购买 nike

我正在使用 twilio 在单个 API 调用中向多个电话号码发送消息。

client.notify.services(notifyServiceSid)
.notifications.create({
toBinding: JSON.stringify([
binding_type: 'sms', address: '** First phone number here **',
binding_type: 'sms', address: '** Second phone number here **'
]),
body: 'You just sent your first message with the Passthrough API!'
})
.then(notification => console.log(notification.sid))
.catch(error => console.log(error));

上面的示例代码片段向电话号码数组发送相同的消息(“您刚刚使用 Passthrough API 发送了您的第一条消息!”),但我想要做的是向每个电话号码发送不同的消息。上面的代码片段似乎不可能。我在给定的博客中也找不到任何内容:Passthrough API .那么无论如何要向每个电话号码发送不同的消息。我还有一个向每个收件人发送不同消息的实现:

const prepareSendingMessages = async (body) => {
//parse message input and send message in loop
try {
console.log(body.data)
for (const sms of body.data.messages) {
await sendMessage(sms.to, sms.message)
}
} catch (error) {
console.log(error);
}

};

const sendMessage = async (to, message) => {
let messageResult = await client.messages
.create({
body: message,
from: process.env.TWILIO_NUMBER,
to
});

console.log(messageResult);

return true;
};

但我正在寻找是否有可能通过 Twilio's Passthrough API

最佳答案

您为此使用消息资源。

如何发送短信 https://www.twilio.com/docs/sms/send-messages

关于javascript - 使用 twilio Passthrough API 向多个号码发送消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59505540/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com