Twiml 获取来电号码

Twiml getting callers number

在我的应用程序中,我想让用户 A 拨打 twilio 号码,然后让用户 B 接听来自 twilio 号码的电话,让两个用户通话。

按下呼叫按钮时,将呼叫 twilio 号码。
然后执行 /hello 函数。

Xcode

NSString *callString = [NSString stringWithFormat:@"telprompt://TwilioNumber"];

 [[UIApplication sharedApplication] openURL:[NSURL URLWithString:callString]];

我用 twilio 数字代替了 'twilionumber',我硬编码了一个数字代替了 'ToCallNumber'。

Parse.com云码

////TWILIO
app.get('/hello', function(request, response) {
    var twiml = new twilio.TwimlResponse('');

    twiml.dial({callerId:'twilionumber'}, 'ToCallNumber'); //working

    response.type('text/xml');
    response.send(twiml.toString(''));
    });
    app.listen();

到目前为止没问题。我想要的是根据呼叫者更改 ToCallNumber。我已将用户链接到 Parse 数据表中。我需要在 /hello 函数中获取呼叫者的 phone 号码才能呼叫正确的用户。

在控制台中,我看到呼叫者 phone 号码。

Input: {"method"=>"GET", "url"=>"/hello?AccountSid=....... From=%2B"CAllersPhonenumber"&.....

我尝试通过 request.params.From、From、twiml.From、twiml.params.From 和其他可能超过两个小时的操作来获取 From 参数。有人可以解释一下如何从价值中获得吗?

我终于找到了答案。它是 request.param 而不是参数..

Twilio $_REQUEST['From'] equivalent for node.js

request.param('From');