Twilio 函数 - 导出未定义的事件对象
Twilio function - exports event object undefined
我有一个Twilio函数,如下;它将 SMS 转发到电子邮件地址。
在 phone 号的配置中,我在 'A message comes in' 时调用此函数。没有涉及其他组件 - 没有回调,没有消息服务,没有 Studio,nada。
const got = require('got');
exports.handler = function(context, event, callback) {
console.log(event.to);
const requestBody = {
subject: `sms to [${event.to}, from ${event.From}`,
//build rest of JSON request
}
got.post('https://api.mailclient.com/v3/mail/send', {
headers: {
'Authorization': `Bearer ${context.DEV__API_TOKEN}`,
'Content-Type': 'application/json'
},
body: JSON.stringify(requestBody)
})
.then(response => {
let twiml = new Twilio.twiml.MessagingResponse();
callback(null, twiml);
})
.catch(err => {
console.error(err);
callback(err, 'error');
});
};
我正在通过从手机 phone 发送短信来测试设置。电子邮件当然会通过,但 ${event.to} 总是显示为 'undefined'。我不确定我错过了什么。有什么指点吗?
这里是 Twilio 开发人员布道者。
在传入的请求中,参数都是大写的值。您已经正确使用了event.From
,所以您只需要将event.to
更改为event.To
,它就不再是undefined
。
我有一个Twilio函数,如下;它将 SMS 转发到电子邮件地址。 在 phone 号的配置中,我在 'A message comes in' 时调用此函数。没有涉及其他组件 - 没有回调,没有消息服务,没有 Studio,nada。
const got = require('got');
exports.handler = function(context, event, callback) {
console.log(event.to);
const requestBody = {
subject: `sms to [${event.to}, from ${event.From}`,
//build rest of JSON request
}
got.post('https://api.mailclient.com/v3/mail/send', {
headers: {
'Authorization': `Bearer ${context.DEV__API_TOKEN}`,
'Content-Type': 'application/json'
},
body: JSON.stringify(requestBody)
})
.then(response => {
let twiml = new Twilio.twiml.MessagingResponse();
callback(null, twiml);
})
.catch(err => {
console.error(err);
callback(err, 'error');
});
};
我正在通过从手机 phone 发送短信来测试设置。电子邮件当然会通过,但 ${event.to} 总是显示为 'undefined'。我不确定我错过了什么。有什么指点吗?
这里是 Twilio 开发人员布道者。
在传入的请求中,参数都是大写的值。您已经正确使用了event.From
,所以您只需要将event.to
更改为event.To
,它就不再是undefined
。