我目前正在使用第 4 版的 Twilio PHP Helper Library 并使用以下调用列出消息:
$twilio = new Twilio();
$twilio->account->messages->getPage(0, 300, array(
'From' => $myPhoneNumber
));
我可以通过上述方式从特定电话号码获取所有传入消息。
无论如何要搜索来自多个电话号码的所有传入消息?就像是:
$twilio->account->messages->getPage(0, 300, array(
'From' => array($myPhoneNumberOne, $myMyPhoneNumberTwo, $myPhoneNumberThree)
));
如果库的 V4 版本无法做到这一点,我愿意使用版本 5。