我在 nodejs 中使用 Twilio SMS 服务向用户发送 SMS。我正在使用twilio npm 包。
我想在发送短信时发送 customParams,并在发送时在 webhook 响应中获取这些参数,以便我可以更新我的数据库。
例如,像这样:
customParams: {
userId: <userid>
}
这是我创建短信的代码:
twilioClient.messages.create({
to: USER_PHONE,
body: smsBody,
messagingServiceSid: MSG_SERVICE_ID,
}).then(resp => {
console.log('SMS sent', resp)
})
请让我知道我们如何发送带有自定义参数的短信。