gpt4 book ai didi

twilio - 如何在 twilio 中使用 StatusCallback url

转载 作者:行者123 更新时间:2023-12-01 05:34:01 24 4
gpt4 key购买 nike

<?php
$options = array(
"StatusCallback" => 'http://173.203.104.63/call/out/log-callback.php? id='.$id
);

$client = new Services_Twilio($sid, $token, $version);
try {
// Initiate a new outbound call
$call = $client->account->calls->create(
$phonenumber, // The number of the phone initiating the call
$cphonenumber, // The number of the phone receiving call
'60',
'http://173.203.104.63/call/out/three.php?id='.$id, // The URL Twilio will request when the call is answered
$options
);
...

在这里,我为 statuscallback 设置了 url,但我不知道它是否正在重定向的天气以及如何在该 url 中获取我的 callstatus 值

最佳答案

第三个参数应该是 URL,而不是 '60' .通话结束后,所有数据将照常传递到您的回调 URL POSTGET参数(取决于您在帐户中的设置)。

关于twilio - 如何在 twilio 中使用 StatusCallback url,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9786496/

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