コード例 #1
0
ファイル: getSMSInbound.class.php プロジェクト: Git-Host/sms
 public function request()
 {
     parent::auth();
     $this->params->number = $this->vars['number'];
     $this->params->keyword = $this->vars['keyword'];
     parent::send();
 }
コード例 #2
0
 public function request()
 {
     parent::auth();
     $this->params->shortcode = $this->vars['shortcode'];
     $this->params->keyword = $this->vars['keyword'];
     parent::send();
 }
コード例 #3
0
ファイル: getSMSStatus.class.php プロジェクト: Git-Host/sms
 public function request()
 {
     parent::auth();
     $this->params->clientMessageReference = $this->vars['clientMessageReference'];
     parent::send();
     $this->log();
 }
コード例 #4
0
ファイル: sendPremiumSMS.class.php プロジェクト: Git-Host/sms
 public function request()
 {
     parent::auth();
     $this->params->clientBillingReference = $this->vars['clientBillingReference'];
     $this->params->clientMessageReference = $this->vars['clientMessageReference'];
     $this->params->rbid = $this->vars['rbid'];
     $this->params->body = $this->vars['body'];
     $this->params->validity = $this->vars['validity'];
     $this->params->characterSetID = $this->vars['characterSetID'];
     $this->params->clientMessageReference = $this->vars['clientMessageReference'];
     parent::send();
 }
コード例 #5
0
ファイル: testSendSMS.class.php プロジェクト: Git-Host/sms
 public function request()
 {
     parent::auth();
     $this->params->clientBillingReference = $this->vars['clientBillingReference'];
     $this->params->originator = $this->vars['originator'];
     $this->params->destinations = $this->vars['destinations'];
     $this->params->body = $this->vars['body'];
     $this->params->validity = $this->vars['validity'];
     $this->params->replyMethodID = $this->vars['replyMethodID'];
     $this->params->replyData = $this->vars['replyData'];
     $this->params->StatusNotificationUrl = $this->vars['StatusNotificationUrl'];
     $this->params->characterSetID = $this->vars['characterSetID'];
     $this->params->clientMessageReference = $this->vars['clientMessageReference'];
     parent::send();
 }
コード例 #6
0
ファイル: testService.class.php プロジェクト: Git-Host/sms
 public function request()
 {
     parent::auth();
     parent::send();
 }