テスト twilio SMS アプリケーションを実装しました。https://github.com/benedmunds/CodeIgniter-Twilioから 3 つのファイルをダウンロードしました
configフォルダーにあるtwilio.phpファイルでaccount_sid、auth_tokenを使用しました。また、そのファイルで「from」番号を +15005550006 として使用しました。
コントローラーで次のコードを使用しました
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class Twiliosms extends TL_Controller {
function __construct()
{
parent::__construct();
}
function index()
{
$this->load->library('twilio');
$from = '+15005550006';
$to = '+91xxxxxxxxxx';
$message = 'This is a test...';
$response = $this->twilio->sms($from, $to, $message);
//echo "<pre>";print_r($response);echo "</pre>";
if($response->IsError)
echo 'Error: ' . $response->ErrorMessage;
else
//echo 'Sent message to ' . $to;
echo 'Sent message';
}
}
コントローラーファイルをブラウザー (マシンではなくサーバー) で実行すると、正常に実行され、「送信済みメッセージ」が表示されます。
しかし、SMSは受信されません。助けてください。