我們的代碼通過執行以下操作將twilio短信:Twilio得到錯誤代碼短信發送失敗
// get the twilio error components
$twilio_error_status = $e->getStatus();
$twilio_error_code = $e->getCode();
$twilio_error_msg = $e->getMessage();
:
// send the text message to the member's mobile phone
try {
// attempt to send the message through Twilio
$tw_msg = $twilio_client->messages->create(
"+1".$recipient['address'],
array (
'From' => "+1".$org['twilio_number'],
'Body' => $txtmsg,
'StatusCallback' => CALLBACK_LINK.'/text_message_handler.php'
)
);
// else trap the error since the message could not be sent and the callback routine is not called
} catch (Exception $e) {
// process the text message error
process_text_msg_error($db, $e, $org, $msg, $recipient);
}
在V4庫,我們將通過執行以下操作,出現錯誤代碼
這並沒有給我們預期使用V5庫。我們如何使用V5 lib獲取錯誤狀態和代碼?
當您處理錯誤時,您使用v5庫獲得了什麼? – philnash
這是一個數組,我將不得不通過電子郵件發送給您。 – Tim