Twilio TWIML nodejs收集示例代码控制流

时间:2018-04-04 17:44:57

标签: node.js twilio twiml

我正在检查twilio docs上的this示例(v2.x但v3.x也类似,我的问题不会改变)。

// This example uses JavaScript language features present in Node.js 6+

'use strict';
const express = require('express');
const twilio = require('twilio');
const urlencoded = require('body-parser').urlencoded;

let app = express();

// Parse incoming POST params with Express middleware
app.use(urlencoded({ extended: false }));

// Create a route that will handle Twilio webhook requests, sent as an 
// HTTP POST to /voice in our application
app.post('/voice', (request, response) => {
  // Use the Twilio Node.js SDK to build an XML response
  let twiml = new twilio.TwimlResponse();

  // Use the <Gather> verb to collect user input 
  twiml.gather({ numDigits: 1 }, (gatherNode) => {
    gatherNode.say('For sales, press 1. For support, press 2.');
  });

  // If the user doesn't enter input, loop
  twiml.redirect('/voice');

  // Render the response as XML in reply to the webhook request
  response.type('text/xml');
  response.send(twiml.toString());
});

// Create an HTTP server and listen for requests on port 3000
app.listen(3000);

所以这是阻塞下面的片段吗?

twiml.gather({ numDigits: 1 }, (gatherNode) => { gatherNode.say('For sales, press 1. For support, press 2.'); }); 如果是,那么假设用户输入了一些内容,然后我们转移到 twiml.redirect('/voice');

和其他语句按顺序执行。

但是如果它是非阻塞的,则立即调用/voice端点,并且这将在无限循环中继续。

我想知道流程是如何工作的。

修改

混淆似乎是由这个评论引起的 // If the user doesn't enter input, loop

如果用户输入内容,则还会调用twiml.redirect('/voice')。我不确定该代码是如何正常工作的?

1 个答案:

答案 0 :(得分:1)

来自Twilio的Ricky。

此代码不会创建无限循环,但出于与阻塞与非阻塞代码不同的原因。控制Twilio呼叫流程的方式是TwiML,这是一个XML,包含一组如何处理来电的指令。 /voice路由中的节点代码不处理控制流本身,而是生成如下所示的XML:

<?xml version="1.0" encoding="UTF-8"?>
<Response>
  <Gather numDigits="1">
    <Say>For sales, press 1. For support, press 2.</Say>
  </Gather>
  <Redirect>/voice</Redirect>
</Response>