【发布时间】:2017-02-19 02:46:39
【问题描述】:
我很难用 nodejs 创建我的 TWIML 文件。 我正在创建出站呼叫,它们使用静态 XML 文件或 twiml bin,但不是我的端点。
你知道哪里错了吗?
app.post('/twiml-generator', function(req, res){
var name = "billy";
//Create TwiML response
var twiml = new twilio.TwimlResponse();
twiml.say("Hello from your pals at Twilio! Have fun. Love " + name);
res.writeHead(200, {'Content-Type': 'text/xml'});
res.end(twiml.toString());
});
然后当我去发起呼叫时
client.calls.create({
url: 'http://myHOSTEDsite.com/twiml-generator',//ISSUE HERE but if i use a twiml bin or static xml, it works// so my endpoint must be the issue
to: targetNumber,
from: "+14444444444", // my trail number
timeout: 12
}, function(err, call) {
console.log("call made");
//console.log(call)
});
【问题讨论】:
标签: javascript node.js twilio twilio-api twilio-twiml