我正在开发一个 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");
?>
提前致谢!迭戈