我正在使用Twilio PHP Library,并拨打这样的电话:
$call = $client->account->calls->create(
'+15555555555', // I'm using my actual Twilio number
$number, // The number being called
'http://fqdn/mytwiml', // Execute this TwiML when call connects
array('IfMachine' => 'Continue') // Machines are people too
);
通话将间歇性地显示来电号码中的Twilio号码或“未知”。它几乎在两者之间平衡交替...... 这是正常的吗?