我正在尝试向管理员电话号码发送警报短信,并使用本地语言版本的 STOP 响应回复原始短信(我们已关闭此号码的自动响应)。
下面的代码用于向发起人发送响应 - 但是,它不会向我们想要的号码(当前为 +447824636xxx)发送警报短信。
我在帮助文档、StackOverflow 或 Google Twilio 开发组上找不到任何关于它如何在 Twilio 函数中工作的信息。
请告知如何使突出显示的代码正常工作。
exports.handler = function(context, event, callback) {
console.log ("Incoming SMS")
console.log (event.From)
console.log (event.Body)
if (event.Body == "STOP" || event.Body == "Stop" || event.Body == "stop") {
console.log ("Received a STOP message")
// ***** BELOW CODE DOES NOT SEND SMS ****
// Send a warning message to Chloe
let client = context.getTwilioClient()
let c = client.messages.create({
body: "We have a STOP message on Fresenius NO from ",
to: "+447824636xxx",
from: event.To
})
// ***** ABOVE CODE DOES NOT SEND ANYTHING *****
console.log ("Sent warning to Admin")
// Respond to the user/patient with STOP message in local language
let twiml = new Twilio.twiml.MessagingResponse();
twiml.message("Du har nå meldt deg av MyFresubin og vil ikke motta flere meldinger fra dette nummeret.");
twiml.message.to = event.From
twiml.message.from = "+4759444xxx"
callback(null, twiml);
}
else {callback(null)}
}