gpt4 book ai didi

javascript - 如何为 Twiml Nodejs 提供服务

转载 作者:行者123 更新时间:2023-12-03 04:58:43 26 4
gpt4 key购买 nike

我很难使用 Node.js 创建 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)

});

最佳答案

而不是

res.writeHead(200, {'Content-Type': 'text/xml'});
res.end(twiml.toString());

尝试

res.set('Content-Type', 'text/xml');
res.send(twiml.toString());

关于javascript - 如何为 Twiml Nodejs 提供服务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42323073/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com