主頁(yè) > 知識(shí)庫(kù) > php與阿里云短信接口接入操作案例分析

php與阿里云短信接口接入操作案例分析

熱門(mén)標(biāo)簽:菏澤語(yǔ)音外呼系統(tǒng)運(yùn)營(yíng)商 廈門(mén)400電話(huà)辦理選易號(hào)網(wǎng) 公司外呼系統(tǒng)中心 如何在世界地圖標(biāo)注 地圖標(biāo)注符號(hào)樣式有 電子地圖標(biāo)注怎么修改 天客通地圖標(biāo)注 臨沂crm外呼系統(tǒng)平臺(tái) 梧州市機(jī)器人外呼系統(tǒng)怎么樣

本文實(shí)例講述了php與阿里云短信接口接入操作。分享給大家供大家參考,具體如下:

使用阿里云短信API,需要在控制臺(tái)獲取以下必要參數(shù),其中需要自己手機(jī)驗(yàn)證+官方審核多次,尤其審核需要保持耐心。

1. accessKeyId  相當(dāng)于你的個(gè)人賬戶(hù)密鑰;

2. accessKeySecret 與上是成對(duì)的;

3. SignName  個(gè)人簽名,在發(fā)出去的短信中,這個(gè)簽名會(huì)顯示在開(kāi)頭,類(lèi)似 【簽名】親愛(ài)的用戶(hù)...... 這種格式,SignName需要通過(guò)提交審核;

4.TemplateCode  模板代碼,阿里云短信是無(wú)法完全自定義短信的,需要通過(guò)審核的模板,然后自己再替換掉模板中的變量,如模板:“您的驗(yàn)證碼是$[code]” ,code就是變量,使用時(shí)需設(shè)置變量值{"code":"12345"}(設(shè)置變量值的過(guò)程在demo中實(shí)現(xiàn)),短信發(fā)出去后變成:“您的驗(yàn)證碼是12345”,每個(gè)通過(guò)審核的模板會(huì)提供一個(gè)模板代碼;

最新的阿里云短信接口,適用于阿里大于搬家以后的情況。

之前一直用阿里大于的短信接口,最近上項(xiàng)目時(shí)發(fā)現(xiàn)阿里大于悄悄地搬家到了阿里云!阿里云的SDK文件繁多,看得一頭霧水!下面代碼是最新的可適用于阿里云短信服務(wù)的類(lèi),親測(cè)成功!

?php
/**
 * 阿里云短信驗(yàn)證碼發(fā)送類(lèi)
 * @author Administrator
 *
 */
class Sms {

  // 保存錯(cuò)誤信息

  public $error;

  // Access Key ID

  private $accessKeyId = '';

  // Access Access Key Secret

  private $accessKeySecret = '';

  // 簽名

  private $signName = '';

  // 模版ID

  private $templateCode = '';

  public function __construct($cofig = array()) {

    $cofig = array (

        'accessKeyId' => 'xxxxxxxxxxx',

        'accessKeySecret' => 'xxxxxxxxxx',

        'signName' => '你的簽名',

        'templateCode' => 'SMS_76510109'

    );

    // 配置參數(shù)

    $this->accessKeyId = $cofig ['accessKeyId'];

    $this->accessKeySecret = $cofig ['accessKeySecret'];

    $this->signName = $cofig ['signName'];

    $this->templateCode = $cofig ['templateCode'];

  }

  private function percentEncode($string) {

    $string = urlencode ( $string );

    $string = preg_replace ( '/\+/', '%20', $string );

    $string = preg_replace ( '/\*/', '%2A', $string );

    $string = preg_replace ( '/%7E/', '~', $string );

    return $string;

  }

  /**
   * 簽名
   *
   * @param unknown $parameters      
   * @param unknown $accessKeySecret      
   * @return string
   */

  private function computeSignature($parameters, $accessKeySecret) {

    ksort ( $parameters );

    $canonicalizedQueryString = '';

    foreach ( $parameters as $key => $value ) {

      $canonicalizedQueryString .= '' . $this->percentEncode ( $key ) . '=' . $this->percentEncode ( $value );

    }

    $stringToSign = 'GET%2F' . $this->percentencode ( substr ( $canonicalizedQueryString, 1 ) );

    $signature = base64_encode ( hash_hmac ( 'sha1', $stringToSign, $accessKeySecret . '', true ) );

    return $signature;

  }

  /**
   * @param unknown $mobile      
   * @param unknown $verify_code      
   *
   */

  public function send_verify($mobile, $verify_code) {

    $params = array (  //此處作了修改

        'SignName' => $this->signName,

        'Format' => 'JSON',

        'Version' => '2017-05-25',

        'AccessKeyId' => $this->accessKeyId,

        'SignatureVersion' => '1.0',

        'SignatureMethod' => 'HMAC-SHA1',

        'SignatureNonce' => uniqid (),

        'Timestamp' => gmdate ( 'Y-m-d\TH:i:s\Z' ),

        'Action' => 'SendSms',

        'TemplateCode' => $this->templateCode,

        'PhoneNumbers' => $mobile,

        //'TemplateParam' => '{"code":"' . $verify_code . '"}' 

        'TemplateParam' => '{"time":"1234"}'  //更換為自己的實(shí)際模版

    );

    //var_dump($params);die;

    // 計(jì)算簽名并把簽名結(jié)果加入請(qǐng)求參數(shù)

    $params ['Signature'] = $this->computeSignature ( $params, $this->accessKeySecret );

    // 發(fā)送請(qǐng)求(此處作了修改)

    //$url = 'https://sms.aliyuncs.com/?' . http_build_query ( $params );

    $url = 'http://dysmsapi.aliyuncs.com/?' . http_build_query ( $params );

    $ch = curl_init ();

    curl_setopt ( $ch, CURLOPT_URL, $url );

    curl_setopt ( $ch, CURLOPT_SSL_VERIFYPEER, FALSE );

    curl_setopt ( $ch, CURLOPT_SSL_VERIFYHOST, FALSE );

    curl_setopt ( $ch, CURLOPT_RETURNTRANSFER, 1 );

    curl_setopt ( $ch, CURLOPT_TIMEOUT, 10 );

    $result = curl_exec ( $ch );

    curl_close ( $ch );

    $result = json_decode ( $result, true );

    //var_dump($result);die;

    if (isset ( $result ['Code'] )) {

      $this->error = $this->getErrorMessage ( $result ['Code'] );

      return false;

    }

    return true;

  }

  /**
   * 獲取詳細(xì)錯(cuò)誤信息
   *
   * @param unknown $status      
   */

  public function getErrorMessage($status) {

    // 阿里云的短信 亂八七糟的(其實(shí)是用的阿里大于)

    // https://api.alidayu.com/doc2/apiDetail?spm=a3142.7629140.1.19.SmdYoAapiId=25450

    $message = array (

        'InvalidDayuStatus.Malformed' => '賬戶(hù)短信開(kāi)通狀態(tài)不正確',

        'InvalidSignName.Malformed' => '短信簽名不正確或簽名狀態(tài)不正確',

        'InvalidTemplateCode.MalFormed' => '短信模板Code不正確或者模板狀態(tài)不正確',

        'InvalidRecNum.Malformed' => '目標(biāo)手機(jī)號(hào)不正確,單次發(fā)送數(shù)量不能超過(guò)100',

        'InvalidParamString.MalFormed' => '短信模板中變量不是json格式',

        'InvalidParamStringTemplate.Malformed' => '短信模板中變量與模板內(nèi)容不匹配',

        'InvalidSendSms' => '觸發(fā)業(yè)務(wù)流控',

        'InvalidDayu.Malformed' => '變量不能是url,可以將變量固化在模板中'

    );

    if (isset ( $message [$status] )) {

      return $message [$status];

    }

    return $status;

  }

}

調(diào)用方法:

//生成驗(yàn)證碼
$mobile = 'xxxxxxx';
$code = rand ( 1000, 9999 );
//發(fā)送短信
$sms = new Sms();

//測(cè)試模式
$status = $sms->send_verify($mobile, $code);
if (!$status) {
 echo $sms->error;

}

更多關(guān)于PHP相關(guān)內(nèi)容感興趣的讀者可查看本站專(zhuān)題:《PHP進(jìn)程與線(xiàn)程操作技巧總結(jié)》、《PHP網(wǎng)絡(luò)編程技巧總結(jié)》、《PHP基本語(yǔ)法入門(mén)教程》、《PHP數(shù)組(Array)操作技巧大全》、《php字符串(string)用法總結(jié)》、《php+mysql數(shù)據(jù)庫(kù)操作入門(mén)教程》及《php常見(jiàn)數(shù)據(jù)庫(kù)操作技巧匯總》

希望本文所述對(duì)大家PHP程序設(shè)計(jì)有所幫助。

您可能感興趣的文章:
  • PHP封裝XML和JSON格式數(shù)據(jù)接口操作示例
  • PHP調(diào)用全國(guó)天氣預(yù)報(bào)數(shù)據(jù)接口查詢(xún)天氣示例
  • php的api數(shù)據(jù)接口書(shū)寫(xiě)實(shí)例(推薦)
  • PHP實(shí)現(xiàn)chrome表單請(qǐng)求數(shù)據(jù)轉(zhuǎn)換為接口使用的json數(shù)據(jù)
  • PHP實(shí)現(xiàn)騰訊短網(wǎng)址生成api接口實(shí)例
  • PHP接入支付寶接口失效流程詳解
  • PHP語(yǔ)言對(duì)接抖音快手小紅書(shū)視頻/圖片去水印API接口源碼
  • PHP預(yù)定義接口——Iterator用法示例
  • PHP開(kāi)發(fā)API接口簽名生成及驗(yàn)證操作示例
  • PHP接口類(lèi)(interface)的定義、特點(diǎn)和應(yīng)用示例
  • 微信小程序開(kāi)發(fā)之獲取用戶(hù)手機(jī)號(hào)碼(php接口解密)
  • PHP 對(duì)象接口簡(jiǎn)單實(shí)現(xiàn)方法示例
  • PHP開(kāi)發(fā)api接口安全驗(yàn)證操作實(shí)例詳解
  • 如何用PHP編寫(xiě)簡(jiǎn)單的api數(shù)據(jù)接口

標(biāo)簽:雞西 綿陽(yáng) 迪慶 瀘州 貴陽(yáng) 郴州 白城 黃石

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《php與阿里云短信接口接入操作案例分析》,本文關(guān)鍵詞  php,與,阿里,云,短信,接口,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《php與阿里云短信接口接入操作案例分析》相關(guān)的同類(lèi)信息!
  • 本頁(yè)收集關(guān)于php與阿里云短信接口接入操作案例分析的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章