• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

最新阿里云短信服务接口类【亲测成功】

php 搞代码 3年前 (2022-01-22) 23次浏览 已收录 0个评论

最新的阿里云短信接口,适用于阿里大于搬家以后的情况。
之前一直用阿里大于的短信接口,最近上项目时发现阿里大于悄悄地搬家到了阿里云!阿里云的SDK文件繁多,看得一头雾水!下面代码是最新的可适用于阿里云短信服务的类,亲测成功!
之前有大神放出过代码,但是经过测试会返回“ 短信接口返回错误码:InvalidDayuStatus.Malformed ,账户短信开通状态不正确”!(经过测试,该大神代码适用于阿里大于接口,不适用于最新的阿里云控制台内的短信服务)
经过详细查阅SDK介绍,链接地址:
“您好,暂时没有其他语言的SDK,我们正在努力更新中,敬请期待!sdk只是帮助拼接了http请求和解析返回报文,如若sdk版本问题无法编译通过,可以 自行拼接下http请求来使用。接口本身只是一个http请求调用,没有语言的限制。拼接http请求请参照上面的链接,也可以参照sdk中的 源码:点击下载

对上面大神代码进行改装(主要修改传入参数及网关)如下,成功!

<?php/** * 阿里云短信验证码发送类 * @author Administrator * */class Sms {    // 保存错误信息    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'         );        // 配置参数        $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"}'   //更换为自己的实际模版        );        //var_dump($params);die;        // 计算签名并把签名结果加入请求参数        $params ['Signature'] = $this->computeSignature ( $params, $this->accessKeySecret );        // 发送请求(此处作了修改)        //$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;    }    /**     * 获取详细错误信息     *     * @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' => '短信模板中变量与模板内容不匹配',                'InvalidSendSms' => '触发业务流控',                'InvalidDayu.Malformed' => '变量不能是url,可以将变量固化在模板中'         <strong style="color:transparent">本文来源gaodai#ma#com搞@@代~&码*网/</strong><strong>搞gaodaima代码</strong>);        if (isset ( $message [$status] )) {            return $message [$status];        }        return $status;    }}

调用代码如下:

  //生成验证码    $mobile = 'xxxxxxx';    $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);?>

以上就是最新阿里云短信服务接口类【亲测成功】的详细内容,更多请关注搞代码gaodaima其它相关文章!


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:最新阿里云短信服务接口类【亲测成功】
喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址