1

我正在开发一个 twilio 应用程序,该应用程序将语音转录然后转换为文本。在检索转录文本之前,一切正常。我知道如果我知道“sid”,我可以检索转录代码,但是如果我想要即时转录代码并且不知道“sid”怎么办。换句话说,我想要电话号码“555-555-1212”的最新转录,我能找到的只是下面的代码。

<?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 = "AC1240edf87a1d3b6717472af6deda4ce7";
$token = "{{ auth_token }}";
$client = new Services_Twilio($sid, $token);
$client->account->transcriptions->delete("TR8c61027b709ffb038236612dc5af8723");
?>

提前致谢!迭戈

4

3 回答 3

0

您将需要获取呼叫的 SID,但如果您知道电话号码,并且可以选择查找日期范围,这很容易做到(我的 PHP 已生锈,因此您可能需要对此进行修改):

// Your Account Sid and Auth Token from twilio.com/user/account
$sid = "{{ sid }}"; 
$token = "{{ auth_token }}"; 
$client = new Services_Twilio($sid, $token);

// Get calls to a number on or after a certain date.
foreach ($client->account->calls->getIterator(0, 50, array("Status" => "completed", "To" => "555-555-1212","StartTime" => "2013-10-26")) as $call)  {
    echo $call->sid
    //now use the sid to get the transcription text using a seperate rest call.
    $transcription = $client->account->transcriptions->get($call->sid);
    echo $transcription->transcription_text;    
}
于 2013-10-26T11:17:04.770 回答
0

修复我原来的问题=)

<?php
//RETRIEVE NUMBERS LAST TRANSCRIPTION
$client = new Services_Twilio($sid, $token);
$i=0;
foreach($client->account->transcriptions->getIterator(0, 50, array('Status' =>  'completed', 'To' => ''.$_GET['number'].'')) as $call)  {  
//now use the sid to get the transcription text using a seperate rest call.
if($i==1) break;
$transcription = $client->account->transcriptions->get($call->sid);
$sms_text = $transcription->transcription_text;
$i++;
}
?>
于 2013-11-16T17:32:55.373 回答
0

Twilio 布道者在这里。

另一种选择是,如果您使用<Record>动词 is to,您可以设置 transcribeCallback 参数:

https://www.twilio.com/docs/api/twiml/record#attributes-transcribe-callback

这使您可以向 Twilio 提供一个 URL,我们将在转录完成时请求该 URL。

希望有帮助。

于 2013-11-17T05:56:10.047 回答