我正在尝试使用 PHP 中的 Plivo API 将味精发送到一个号码。起初我给了两个美国号码作为来源和目的地。它没有用,所以在那之后我给了印度非免打扰号码。代码仍然无法正常工作。当我第一次尝试这个时,任何人都可以帮我看看错误是什么。(注意::我正在使用 Code-igniter 框架)
public function sendsms()
{
$this->load->helper('url');
require_once APPPATH.'libraries/plivo_php/plivo.php';
$auth_id = "MAYZU4MDGXXXXXXXXXXX";
$auth_token = "M2JmYTQwMDY1MTXXXXXXXXXXXXXXXXXXXXXXXXXX";
$p = new RestAPI($auth_id, $auth_token);
// Send a message
$params = array(
'src' => '917XXXXXXXXX',
'dst' => '919XXXXXXXXX',
'text' => 'Hi, Message from Srusti',
'type' => 'sms'
);
$response = $p -> send_message($params);
// Print the response
echo "Response : ";
print_r ($response['response']);
$this->load->view('sendsms');//Here sendsms is the view name..
}