gpt4 book ai didi

php - Twilio 在连接到设备时获取 session SID

转载 作者:行者123 更新时间:2023-12-04 16:46:59 27 4
gpt4 key购买 nike

在 PHP 中连接调用时,有没有办法获取 session SID?

$twilio->account->calls->create(
$from,
to,
$twimlURL
);

执行此调用操作后,我无法获取 session ID?
或者可能在 Twiml 上设置 session SID。这可能吗?

最佳答案

Twilio 开发人员布道者在这里。

当您像这样通过 REST API 创建调用时,它尚未与 session 关联。我假设 $twimlURL您发送的返回 <Dial><Conference>some conference name</Conference></Dial>这就是调用与 session 相关联的时间。

您可以通过 listing conferences using the REST API and filtering by the FriendlyName (the name you used in the TwiML) and by the status in-progress 获取 session SID .像这样:

use Twilio\Rest\Client;

$sid = "your_account_sid";
$token = "your_auth_token";
$client = new Client($sid, $token);

$conferences = $client->conferences->read(
array("status" => "in-progress", "friendlyName" => "MyRoom")
);
foreach ($conferences as $conference) {
echo $conference->sid;
}

让我知道这是否有帮助。

关于php - Twilio 在连接到设备时获取 session SID,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45816751/

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