我有一个使用 Twilio 的网站,允许人们使用我们的临时号码来接收在验证过程中收到的 SMS 消息等。公司转而使用音频验证变得越来越普遍,因此我想开始记录所有收到的电话并显示它们在现有的 HTML 表中使用 HTML5<audio>
标记。
这是现有的代码:
<tbody>
<?php
ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);
// Get the PHP helper library from twilio.com/docs/php/install
require_once('twilio/Services/Twilio.php'); // Loads the library
// Your Account Sid and Auth Token from twilio.com/user/account
$sid = "";
$token = "";
$client = new Services_Twilio($sid, $token);
$messages = $client->account->messages->getIterator(0, 50, array(
'To' => $_SERVER['QUERY_STRING'] // this is the number
));
foreach ($messages as $message) {
echo "<tr><td>" . $message->from . "</td><td>" . $message->date_sent . "</td><td>" . $message->body . "</td></tr>";
}
?>
</tbody>
</table>
我怎样才能建立收到的录音电话?如果有意义的话,我想在 eixsting SMS 消息中保持日期/时间顺序。