我需要一种方法来检测某个号码是否被 twilio 阻止从我的号码接收短信(已使用 STOP 命令选择退出)。
我正在使用来自 twilio-php-master api 的 Lookups_Services_Twilio 类,但到目前为止无法获得状态,只能从 phone_numbers.get() 获得 country_code、national_format 和其他详细信息。还有其他我应该寻找的课程/方法吗?
require('twilio-php-master/Services/Twilio.php');
require('twilio-php-master/Services/Twilio/Rest/Lookups/PhoneNumber.php');
global $twilio_account_sid;
global $twilio_auth_token;
$client2 = new Lookups_Services_Twilio($twilio_account_sid, $twilio_auth_token);
$number = $client2->phone_numbers->get("+xxxxxxxxxxxxx");
$cc = $number->country_code;
$nf = $number->national_format;
到这里一切正常,但是:
$status = $number->status;
什么都不返回。