从twilio收集数字

时间:2016-02-05 03:43:13

标签: node.js express twilio

我正在尝试将数字输入手机。我认为res.Digits in Pin函数会是这样的,但我得到一个未定义的错误

exports.Say = function(req, res)
{
    var resp = new twilio.TwimlResponse();

    resp.gather(
    {
        action:'http://pap-papdemo.rhcloud.com/api/Phone/Pin',
        finishOnKey:'#',
        method:"POST"
    }, function()
    {
        this.say('Please enter your Phone and Pin number followed by the hash key');
    });

    //Render the TwiML document using "toString"
    res.writeHead(200,
    {
          'Content-Type':'text/xml'
    });

    res.end(resp.toString());

};




     exports.Pin = function(req, res)
        {
            var resp = new twilio.TwimlResponse();
            console.log("***** PIN *****");


            console.log("Pin: Response " +  res.body.Digits);

            //Render the TwiML document using "toString"
            res.writeHead(200,
            {
                  'Content-Type':'text/xml'
            });

            res.end(resp.toString());

        };

任何想法我需要做什么,因为我需要在db

中存储密码

1 个答案:

答案 0 :(得分:0)

来自Twilio的梅根在这里。我看到你回答了你自己的问题,但我认为我会更新为其他在这里降落的人的答案。

Twilio will pass Digits as a parameter除了标准的TwiML语音请求参数及其对“操作”的请求之外。 URL。

因此var pin = JSON.stringify(req.body.Digits);在这种情况下起作用。