search
HomeBackend DevelopmentPHP TutorialThe latest Alibaba Cloud SMS service interface class [Personal test successful]

The latest Alibaba Cloud SMS interface is suitable for the situation after Alibaba moves.
I have been using Alibaba's SMS interface before. Recently, when I was working on a project, I discovered that Alibaba had quietly moved to Alibaba Cloud! Alibaba Cloud has so many SDK files that it’s confusing! The following code is the latest class applicable to Alibaba Cloud SMS service. The personal test was successful!
Some experts have released the code before, but after testing, it will return "The SMS interface returns error code: InvalidDayuStatus.Malformed, the account SMS activation status is incorrect"! (After testing, this master code is applicable to Alibaba Cloud interface, but not applicable to the SMS service in the latest Alibaba Cloud console)
After detailed review of the SDK introduction, Link address:
"You Well, there is no SDK for other languages ​​at the moment. We are working hard to update it, so stay tuned! The SDK only helps to splice the http request and parse the return message. If the SDK version cannot be compiled, you can splice the http request interface yourself. It is just an http request call, with no language restrictions. To splice http requests, please refer to the link above, or you can refer to the source code in the sdk: Click to download

to modify the above master code ( Mainly modify the incoming parameters and gateway) as follows, success!

<?php
/**
 * 阿里云短信验证码发送类
 * @author Administrator
 *
 */
class Sms {
    // 保存错误信息
    public $error;
    // Access Key ID
    private $accessKeyId = &#39;&#39;;
    // Access Access Key Secret
    private $accessKeySecret = &#39;&#39;;
    // 签名
    private $signName = &#39;&#39;;
    // 模版ID
    private $templateCode = &#39;&#39;;
    public function __construct($cofig = array()) {
        $cofig = array (
                &#39;accessKeyId&#39; => &#39;xxxxxxxxxxx&#39;,
                &#39;accessKeySecret&#39; => &#39;xxxxxxxxxx&#39;,
                &#39;signName&#39; => &#39;你的签名&#39;,
                &#39;templateCode&#39; => &#39;SMS_76510109&#39; 
        );
        // 配置参数
        $this->accessKeyId = $cofig [&#39;accessKeyId&#39;];
        $this->accessKeySecret = $cofig [&#39;accessKeySecret&#39;];
        $this->signName = $cofig [&#39;signName&#39;];
        $this->templateCode = $cofig [&#39;templateCode&#39;];
    }
    private function percentEncode($string) {
        $string = urlencode ( $string );
        $string = preg_replace ( &#39;/\+/&#39;, &#39;%20&#39;, $string );
        $string = preg_replace ( &#39;/\*/&#39;, &#39;%2A&#39;, $string );
        $string = preg_replace ( &#39;/%7E/&#39;, &#39;~&#39;, $string );
        return $string;
    }
    /**
     * 签名
     *
     * @param unknown $parameters            
     * @param unknown $accessKeySecret            
     * @return string
     */
    private function computeSignature($parameters, $accessKeySecret) {
        ksort ( $parameters );
        $canonicalizedQueryString = &#39;&#39;;
        foreach ( $parameters as $key => $value ) {
            $canonicalizedQueryString .= &#39;&&#39; . $this->percentEncode ( $key ) . &#39;=&#39; . $this->percentEncode ( $value );
        }
        $stringToSign = &#39;GET&%2F&&#39; . $this->percentencode ( substr ( $canonicalizedQueryString, 1 ) );
        $signature = base64_encode ( hash_hmac ( &#39;sha1&#39;, $stringToSign, $accessKeySecret . &#39;&&#39;, true ) );
        return $signature;
    }
    /**
     * @param unknown $mobile            
     * @param unknown $verify_code            
     *
     */
    public function send_verify($mobile, $verify_code) {
        $params = array (   //此处作了修改
                &#39;SignName&#39; => $this->signName,
                &#39;Format&#39; => &#39;JSON&#39;,
                &#39;Version&#39; => &#39;2017-05-25&#39;,
                &#39;AccessKeyId&#39; => $this->accessKeyId,
                &#39;SignatureVersion&#39; => &#39;1.0&#39;,
                &#39;SignatureMethod&#39; => &#39;HMAC-SHA1&#39;,
                &#39;SignatureNonce&#39; => uniqid (),
                &#39;Timestamp&#39; => gmdate ( &#39;Y-m-d\TH:i:s\Z&#39; ),
                &#39;Action&#39; => &#39;SendSms&#39;,
                &#39;TemplateCode&#39; => $this->templateCode,
                &#39;PhoneNumbers&#39; => $mobile,
                //&#39;TemplateParam&#39; => &#39;{"code":"&#39; . $verify_code . &#39;"}&#39; 
                &#39;TemplateParam&#39; => &#39;{"time":"1234"}&#39;   //更换为自己的实际模版
        );
        //var_dump($params);die;
        // 计算签名并把签名结果加入请求参数
        $params [&#39;Signature&#39;] = $this->computeSignature ( $params, $this->accessKeySecret );
        // 发送请求(此处作了修改)
        //$url = &#39;https://sms.aliyuncs.com/?&#39; . http_build_query ( $params );
        $url = &#39;http://dysmsapi.aliyuncs.com/?&#39; . 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 [&#39;Code&#39;] )) {
            $this->error = $this->getErrorMessage ( $result [&#39;Code&#39;] );
            return false;
        }
        return true;
    }
    /**
     * 获取详细错误信息
     *
     * @param unknown $status            
     */
    public function getErrorMessage($status) {
        // 阿里云的短信 乱八七糟的(其实是用的阿里大于)
        // https://api.alidayu.com/doc2/apiDetail?spm=a3142.7629140.1.19.SmdYoA&apiId=25450
        $message = array (
                &#39;InvalidDayuStatus.Malformed&#39; => &#39;账户短信开通状态不正确&#39;,
                &#39;InvalidSignName.Malformed&#39; => &#39;短信签名不正确或签名状态不正确&#39;,
                &#39;InvalidTemplateCode.MalFormed&#39; => &#39;短信模板Code不正确或者模板状态不正确&#39;,
                &#39;InvalidRecNum.Malformed&#39; => &#39;目标手机号不正确,单次发送数量不能超过100&#39;,
                &#39;InvalidParamString.MalFormed&#39; => &#39;短信模板中变量不是json格式&#39;,
                &#39;InvalidParamStringTemplate.Malformed&#39; => &#39;短信模板中变量与模板内容不匹配&#39;,
                &#39;InvalidSendSms&#39; => &#39;触发业务流控&#39;,
                &#39;InvalidDayu.Malformed&#39; => &#39;变量不能是url,可以将变量固化在模板中&#39; 
        );
        if (isset ( $message [$status] )) {
            return $message [$status];
        }
        return $status;
    }
}

The calling code is as follows:

  //生成验证码
    $mobile = &#39;xxxxxxx&#39;;
    $code = rand ( 1000, 9999 );
    //发送短信
    $sms = new Sms();
        
    //测试模式
    $status = $sms->send_verify($mobile, $code);
        
    if (!$status) {
        echo $sms->error;
    }
//看你这个封装的复杂些,不知道用的是不是同一个短信接口。
//上周有个客户用的是阿里大于的短信接口,看api文档,只要这么写就行了。
<?php
$c = new TopClient;
$c->appkey = $appkey;
$c->secretKey = $secret;
$req = new AlibabaAliqinFcSmsNumSendRequest;
$req->setExtend("123456");
$req->setSmsType("normal");
$req->setSmsFreeSignName("阿里大于");
$req->setSmsParam("{\"code\":\"1234\",\"product\":\"alidayu\"}");
$req->setRecNum("13000000000");
$req->setSmsTemplateCode("SMS_585014");
$resp = $c->execute($req);
?>

The above is the detailed content of The latest Alibaba Cloud SMS service interface class [Personal test successful]. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
主板aafp是什么接口主板aafp是什么接口Aug 29, 2022 am 10:50 AM

主板上的aafp是音频接口;该接口的功能是启用前面板的“3.5mm”插孔,起到传输音频的作用,aafp跳线基本上由两个部分组成,一部分是固定在主板、硬盘等设备上的,由两根或两根以上金属跳针组成,另一部分是跳线帽,是一个可以活动的组件,外层是绝缘塑料,内层是导电材料,可以插在跳线针上。

ioioi是什么接口ioioi是什么接口Aug 31, 2022 pm 04:50 PM

ioioi是指COM接口,即串行通讯端口,简称串口,是采用串行通信方式的扩展接口。COM接口是指数据一位一位地顺序传送;其特点是通信线路简单,只要一对传输线就可以实现双向通信(可以直接利用电话线作为传输线),从而大大降低了成本,特别适用于远距离通信,但传送速度较慢。

cha fan表示什么风扇cha fan表示什么风扇Sep 15, 2022 pm 03:09 PM

“cha fan”表示的是机箱风扇;“cha”是“chassis”的缩写,是机箱的意思,“cha fan”接口是主板上的风扇供电接口,用于连接主板与机箱风扇,可以配合温度传感器反馈的信息进行智能的转速调节、控制噪音。

link/act是什么接口link/act是什么接口Feb 23, 2023 pm 04:14 PM

link/act是物理数据接口;交换机上的link/act指示灯表示线路是否连接或者活动的状态;通常Link/ACT指示灯用来观察线路是否激活或者通畅;一般情况下,若是线路畅通,则指示灯长亮,若是有数据传送时,则指示灯闪烁。

sata6g是什么接口sata6g是什么接口Sep 14, 2022 am 11:46 AM

sata6g是数据传输速度为“6G/s”的sata接口;sata即“Serial ATA”,也就是串行ATA,是主板接口的名称,现在的硬盘和光驱都使用sata接口与主板相连,这个接口的规格目前已经发展到第三代sata3接口。

鼠标插在主机哪个接口鼠标插在主机哪个接口Sep 13, 2022 pm 03:50 PM

鼠标插在主机的串口接口、PS/2接口或USB接口上。串行接口是最古老的鼠标接口,是一种9针或25针的D型接口,将鼠标接到电脑主机串口上就能使用。PS/2接口是1987年IBM公司推出的鼠标接口,是一种鼠标和键盘的专用接口,是一种6针的圆型接口。USB接口,是一种高速的通用接口,具有非常高的数据传输率,且支持热插拔。

dc接口是什么意思dc接口是什么意思Aug 24, 2022 am 10:47 AM

dc接口是一种为转变输入电压后有效输出固定电压接口的意思;dc接口是由横向插口、纵向插口、绝缘基座、叉形接触弹片、定向键槽组成,两只叉型接触弹片定位在基座中心部位,成纵横向排列互不相连,应用于手机、MP3、数码相机、便携式媒体播放器等产品中。

pump fan是什么接口pump fan是什么接口Jun 25, 2021 pm 02:55 PM

pump fan是散热风扇接口。主板上的风扇接口有cpu fun、sys fun、pump fun,对于一般普通用户来说区别不大,一般接哪个都行,而pump fun上的电流更大一点,用于接功率大一点的水冷风扇头。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version