2016-12-06 54 views

回答

2

從這裏啓發:https://www.twilio.com/docs/api/rest/incoming-phone-numbers?code-sample=code-get-an-incomingphonenumber&code-language=php&code-sdk-version=5.x

示例代碼delete()一個Twilio電話號碼:

<?php 
// Get the PHP helper library from twilio.com/docs/php/install 
require_once '/path/to/vendor/autoload.php'; // Loads the library 
use Twilio\Rest\Client; 

// Your Account Sid and Auth Token from twilio.com/user/account 
$sid = "ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; 
$token = "your_auth_token"; 
$client = new Client($sid, $token); 

// Delete a Twilio number based on its sid. If you do not have a sid, 
// check out the list resource examples on this page 
$number = $client 
    ->incomingPhoneNumbers("PN2a0747eba6abf96b7e3c3ff0b4530f6e") 
    ->delete(); 

警告Once the number is deleted, any code using it, won't work. Be sure you really want to run the code above.

+0

完美。謝謝! –

+0

這是什麼PN2a0747eba6abf96b7e3c3ff0b4530f6e?是個人號碼,我怎麼能從twillo號碼得到sid? –