cuo使用阿里云短信api,需要在控制台获取以下必要参数,其中需要自己手机验证+官方审核多次,尤其审核需要保持耐心。
1. accesskeyid 相当于你的个人账户密钥;
2. accesskeycret 与上是成对的;
3. signname 个人签名,在发出去的短信中,这个签名会显示在开头,类似 【签名】亲爱的用户…… 这种格式,signname需要通过提交审核;
4.templatecode 模板代码,阿里云短信是无法完全自定义短信的,需要通过审核的模板,然后自己再替换掉模板中的变量,如模板:“您的验证码是${code}” ,code就是变量,使用时需设置变量值{“code”:”12345”}(设置变量值的过程在demo中实现),短信发出去后变成:“您的验证码是12345”,每个通过审核的模板会提供一个模板代码;
最新的阿里云短信接口,适用于阿里大于搬家以后的情况。
之前一直用阿里大于的短信接口,最近上项目时发现阿里大于悄悄地搬家到了阿里云!阿里云的sdk文件繁多,看得一头雾水!下面代码是最新的可适用于阿里云短信服务的类,亲测成功!
<?php/** * 阿里云短信验证码发送类 * @author administrator * */class sms { // 保存错误信息 public $error; // access key id private $accesskeyid = ''; // access access key cret private $accesskeycret = ''; // 签名 private $signname = ''; // 模版id private $templatecode = ''; public function __construct($cofig = array()) { $cofig = array ( 'accesskeyid' => 'xxxxxxxxxxx', 'accesskeycret' => 'xxxxxxxxxx', 'signname' => '你的签名', 'templatecode' => 'sms_76510109' ); // 配置参数 $this->accesskeyid = $cofig ['accesskeyid']; $this->accesskeycret = $cofig ['accesskeycret']; $this->signname = $cofig ['signname']; $this->templatecode = $cofig ['templatecode']; } private function percentencode($string) { $string = urle报考公务员条件ncode ( $string ); $string = preg_replace ( '/\+/', '%20', $string ); $string = preg_replace ( '/\*/', '%2a', $string ); $string = preg_replace ( '/%7e/', '~', $string ); return $string; } /** * 签名 * * @param unknown $parameters * @param unknown $accesskeycret * @return string */ private function computesignature($parameters, $accesskeycret) { ksort ( $parameters ); $canonicalizedquerystring = ''; foreach ( $parameters as $key => $value ) { $canonicalizedquerystring .= '&' . $this->percentencode ( $key ) . '=' . $this->percentencode ( $value ); } $stringtosign = 'get&%2f&' . $this->percentencode ( substr ( $canonicalizedquerystring, 1 ) ); $signature = ba64_encode ( hash_hmac ( 'sha1', $stringtosign, $accesskeycret . '&', true ) ); return $signature; } /** * @param unknown $mobile * @param unknown $verify_code * */ public function nd_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' => 'ndsms', 'templatecode' => $this->templatecode, 'phonenumbers' => $mobile, //'templateparam' => '{"code":"' . $verify_code . '"}' 'templateparam' => '{"time":"1234"}' //更换为自己的实际模版 ); //var_dump($params);die; // 计算签名并把签名结果加入请求参数 $params ['signature'] = $this->computesignature ( $params, $this->accesskeycret ); // 发送请求(此处作了修改) //$url = 'https://sms.aliyuncs.com/?' . http_build_query ( $params ); $url = 'http://dysmsapi.aliyuncs.com/?' . http_build_query ( $params ); $ch = curl_init (); curl_topt ( $ch, curlopt_url, $url ); curl_topt ( $ch, curlopt_ssl_verifypeer, fal ); curl_topt ( $ch, curlopt_ssl_verifyhost, fal ); curl_topt ( $ch, curlopt_returntransfer, 1 ); curl_topt ( $ch, curlopt_timeout, 10 ); $result = curl_exec ( $ch ); curl_clo ( $ch ); $result = json_decode ( $result, true ); //var_dump($result);die; if (ist ( $result ['code'] )) { $this->error = $this->geterrormessage ( 电工电子实习报告$result ['code'] ); return fal; } 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 ( 'invaliddayustatus.malformed' => '账户短信开通状态不正确', 'invalidsignname.malformed' => '短信签名不正确或签名状态不正确', 'invalidtemplatecode.malformed' => '短信模板code不正确或者模板状态不正确', 'invalidrecnum.malformed' => '目标手机号不正确,单次发送数量不能超过100', 'invalidparamstring.malformed' => '短信模板中变量不是json格式', 'invalidparamstringtemplate.malformed' => '短信模板中变量与模板内容不匹配', 'invalidndsms' => '触发业务流控', 'invaliddayu.malformed' => '变量不能是url,可以将变量固化在模板中' ); if (ist ( $message [$status] )) { return $message [$status]; } return $status; }}
调用方卧槽福利电影法:
//生成验证码$mobile = 'xxxxxxx';$code = rand ( 1000, 9999 );//发送短信$sms = new sms();//测试模式$status 巧克力爷爷和糖奶奶= $sms->nd_verify($mobile, $code);if (!$status) { echo $sms->error;}
php与九大接口实战视频教程【80节】
链接:/d/file/titlepic/p
本文发布于:2023-04-07 15:12:07,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/db433ee24a0c284a57d143f6bf1d50c7.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:php与阿里云短信接口接入.doc
本文 PDF 下载地址:php与阿里云短信接口接入.pdf
留言与评论(共有 0 条评论) |