我很难用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)
});
答案 0 :(得分:1)
而不是
res.writeHead(200, {'Content-Type': 'text/xml'});
res.end(twiml.toString());
试
res.set('Content-Type', 'text/xml');
res.send(twiml.toString());
答案 1 :(得分:0)
这就是 Twilio 文档所说的
response.type('text/xml');
response.send(twiml.toString());