我有一个应用程序,允许用户拨打他们想要添加到呼叫的号码。每个用户都需要在帐户中拥有余额。
使用TwiML <Dial>
根据我的每分钟费率,我以秒计算剩余余额,并将其设为timeLimit
<Dial>
。
我想做一个简单的事情,例如当用户正在通话并且他的电话timeLimit
即将到期时,我会想要使用我的付款方式向他们收费,如果收费是成功补充的话timeLimit
同一个电话。
可以这样做吗?
答案 0 :(得分:7)
Twilio开发者传播者在这里。
在通话过程中无法修改拨号上的timeLimit。但我认为我有一个适合你的解决方案。
您可以使用timeLimit调用conference,而不是直接拨号。
<Response>
<Dial timeLimit="30">
<Conference>YourCall</Conference>
</Dial>
</Response>
然后,当他们的帐户被补充时,您可以modify the live call重定向到使用新timeLimit重新加入电话会议的TwiML网址:
<?php
// Get the PHP helper library from twilio.com/docs/php/install
require_once('/path/to/twilio-php/Services/Twilio.php'); // Loads the library
// Your Account Sid and Auth Token from twilio.com/user/account
$sid = "{{ sid }}";
$token = "{{ auth_token }}";
$client = new Services_Twilio($sid, $token);
// Get an object from its sid. If you do not have a sid,
// check out the list resource examples on this page
$call = $client->account->calls->get("{{call sid}}");
$call->update(array(
"Url" => "http://youserver.com/conference.xml",
"Method" => "POST"
));
echo $call->to;
答案 1 :(得分:2)
使用Twilio REST API的https://www.twilio.com/docs/api/rest/change-call-state功能可能更容易.REST API是异步的。
在您的情况下,您可以按照以下方式执行此操作: