我如何才能找到一个给定的数字是一个twilio有效购买的号码或不 因为客户给了我付费帐户凭证和号码,但是当我使用该号码时api显示错误'来自'号码xxxxxxxxx 不是有效的电话号码或短代码。
答案 0 :(得分:0)
Twilio开发者传道者在这里。
您可以使用Incoming Phone Numbers resource in the REST API列出您拥有的帐户可用的号码。
要在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 = "ACxxx";
$token = "YYYYY";
$client = new Services_Twilio($sid, $token);
// Loop over the list of numbers and echo a property for each one
foreach ($client->account->incoming_phone_numbers as $number) {
echo $number->phone_number;
}
其他语言的文档中也有例子。
希望有所帮助!