こんにちは、twilio を使用して顧客から SMS を送受信しています。送信 SMS は正常に機能します。
SMS を受信したら、データベースに保存したいのですが、機能しませんfrom
。Body
これが私のコードです。
コントローラ
function receive(){
$post_data['from'] = $this->input->post('From');
$post_data['body'] = $this->input->post('Body');
if($post_data['from'] && $post_data['body']){
$this->receive->insert_received_message($post_data);
}
}
モデル
function insert_received_message($data){
$sms['pone_number'] = $data['from'];
$sms['message_type'] = 2;
$sms['body'] = $data['body'];
$results = $this->db->insert('Sms_message', $sms);
return $results;
}
このように自分の番号にURLを追加しました
受信ログのエラー メッセージ
誰かがこれを修正するのを手伝ってくれますか? TNX。