我做了一个简单的机器人,它提供信息并从使用它的用户那里收集一些数据。例如,用户可以要求指定并给出他的手机。我试图做的是发送一个WA或SMS消息到第三个号码与信息,机器人收集。这是collect部分的任务代码示例
"collect": {
"name": "schedule_appt",
"questions": [
{
{
"question": "Let us your phone number and an expert will get in touch with you",
"name": "appt_phone_number",
"type": "Twilio.PHONE_NUMBER"
}
]
您可以这样做:
{
"actions": [
{
"collect": {
"name": "schedule_appt",
"questions": [
{
"question": "Let us your phone number and an expert will get in touch with you",
"name": "appt_phone_number",
"type": "Twilio.PHONE_NUMBER"
}
],
"on_complete": {
"redirect": {
"method": "POST",
"uri": "https://xyz.twil.io/sostub"
}
}
}
}
]
}
Twilio函数(URL的目标:https://xyz.twil.io/sostub与您唯一的Twilio函数域匹配)
exports.handler = async function(context, event, callback) {
let twilioClient = context.getTwilioClient();
let memory = JSON.parse(event.Memory);
console.log("User Identifier: "+ event.UserIdentifier);
console.log("Task: "+ event.CurrentTask);
console.log(event.CurrentInput);
let message = "Your Message Has been Sent!";
let responseObject = {
"actions": [
{
"say": message
}]
};
let sendSMS = () => {
try {
let result = twilioClient.messages
.create({
body: `Appointment Scheduled, Mobile Phone ${event.CurrentInput}`,
to: '+14075551212',
from: '+15095551212',
});
return result;
} catch(e) {
console.log(e);
callback(e);
}
};
let result = await sendSMS();
callback(null, responseObject);
};
如果我在Instagram上有粉丝关注我的内容,并且在网上也有注册用户,有没有办法将两者联系起来? 有没有办法发现Instagram上的一个用户是否喜欢一张照片,并看看那个用户是否在我的网站上注册了?
嗨,我正在使用twilio API发送一个消息到whatsapp号码,我需要的是从表单中获得号码和消息,并将数据放在twilio API中,我现在不知道如何构建逻辑,但我做到了这一点,但没有工作,我得到了这个错误 这就是我写的逻辑init的控制器文件 我希望我准确地解释了我需要什么
我正在设置一个电脑系统应用程序,这将发送短信警报。可以选择:服务类型:HTTP、SMTP或SMPP。我被告知要使用HTTP。HTTP(S)方法:Post或GET。我被告知要用GET。HTTP(S)URL:我认为https://api.twilio.com/2010-04-01是正确的HTTP(S)参数:举个例子:username=xxx&password=xxxx&mobNo=%xxxx%&mes
我是ruby和ruby on rails的新手,在设置Twilio发送短信时遇到了麻烦。