如何使用API通过前缀搜索电话号码? Twilio"买一个号码"工具可以让你搜索以术语开头,但我没有看到使用API的方法。
你可以这样做:
AvailablePhoneNumbers/US/Local?Contains=703%
但仍然可以在任何地方找到703的数字,而不仅仅是前缀。我能看到这样做的唯一方法是使用*单号搜索,la:
AvailablePhoneNumbers/US/Local?Contains=703*******
但是,我如何将这种通用制作到任何国家?有一个每个国家/地区的电话号码长度查找表,以便我可以添加适当数量的*?
答案 0 :(得分:1)
Twilio在其API文档(Find phone numbers by number pattern)中提供了此信息。
例如使用PHP:
<?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 = "ACde6f132a3c49700934481addd5ce1659";
$token = "{{ auth_token }}";
$client = new Services_Twilio($sid, $token);
$numbers = $client->account->available_phone_numbers->getList('US', 'Local', array(
"Contains" => "510555****"
));
foreach($numbers->available_phone_numbers as $number) {
echo $number->phone_number;
}