現(xiàn)在大部分網(wǎng)站都需要用短信驗(yàn)證碼,因?yàn)榭棄?mèng)官方?jīng)]有短信驗(yàn)證碼插件,所以寫了幾個(gè)短信驗(yàn)證碼插件,一個(gè)使用的是阿里云的短信驗(yàn)證碼接口,一個(gè)使用的是阿里大于的短信驗(yàn)證碼接口,一個(gè)使用的是阿里通信短信驗(yàn)證碼接口,另外一個(gè)使用的是云之訊的短信接口。下面的教程包含2個(gè)織夢(mèng)短信驗(yàn)證碼接口,織夢(mèng)會(huì)員短信注冊(cè)需要修改的地方:
1、需要?jiǎng)?chuàng)建一個(gè)表來對(duì)驗(yàn)證碼進(jìn)行記錄,防止多次發(fā)送,這里創(chuàng)建了一個(gè)phonecode表
2、member/templets/reg-new.htm (注冊(cè)模版添加元素)
3、member/templets/js/reg_new.js (驗(yàn)證手機(jī)號(hào))
4、member/index_do.php (根據(jù)后臺(tái)設(shè)置,判斷是否發(fā)送注冊(cè)驗(yàn)證碼)
5、member/reg_new.php (驗(yàn)證、記錄)
使用阿里云短信接口接入:
需要在member/index_do.php對(duì)應(yīng)的位置插入阿里云短信接口代碼。特別需要注意的是,阿里云短信官方demo文檔是大神寫的,所以普通人用起來會(huì)報(bào)命名空間錯(cuò)誤,這個(gè)需要自己注意。另外需要更新下短息模板,現(xiàn)在阿里短信模板審核非常嚴(yán)格,不允許有其他變量,之前并沒有這個(gè)問題。所以,審核不過的時(shí)候,需要減少變量。(目前已經(jīng)無法開通阿里云短信接口,新開通的是阿里通信接口,不能使用這段代碼,只適合很久之前就開通過阿里云短信的人)
function getrandchar($length){ $str = null; $strPol = "0123456789abcdefghijklmnopqrstuvwxyz"; $max = strlen($strPol)-1; for($i=0;$i<$length;$i++){ $str.=$strPol[rand(0,$max)]; } return $str; } $code = getrandchar(5); require_once(DEDEINC.'/aliyun-php-sdk-core/Config.php'); use Sms\Request\V20160927 as Sms; $iClientProfile = DefaultProfile::getProfile("cn-shenzhen", "your accessKey", "your accessSecret"); //登錄阿里云查看: "your accessKey", "your accessSecret" $client = new DefaultAcsClient($iClientProfile); $request = new Sms\SingleSendSmsRequest(); $request->setSignName("簽名");/*簽名名稱*/ $request->setTemplateCode("SMS_1111");/*模板code*/ $request->setRecNum($phone);/*目標(biāo)手機(jī)號(hào)*/ $request->setParamString("{\"code\":\"$code\",\"tel\":\"電話號(hào)碼\"}");/*模板變量,請(qǐng)確保跟審核過的短信模版變量一致,數(shù)字一定要轉(zhuǎn)換為字符串*/ try { $response = $client->getAcsResponse($request); print_r($response); } catch (ClientException $e) { print_r($e->getErrorCode()); print_r($e->getErrorMessage()); } catch (ServerException $e) { print_r($e->getErrorCode()); print_r($e->getErrorMessage()); } $inquery = " INSERT INTO `dede_phonecode` (`ip`,`phone`,`phonecode`,`used`,`sendtime`) VALUES ( '$ip','$to','$code','1','$nowtime'); "; $rs = $dsql->ExecuteNoneQuery2($inquery); if( $rs = 1 ){ ShowMsg('發(fā)送成功,請(qǐng)注意查收!','-1'); exit(); } exit();
附上阿里云短信模版:驗(yàn)證碼:${code}。您正在注冊(cè),如非您本人操作,請(qǐng)忽略此條短信。如有疑問請(qǐng)與我們聯(lián)系! 電話:${tel}
2.使用阿里大魚的短信接口接入:
同樣的需要在member/index_do.php對(duì)應(yīng)的位置插入以下代碼。
function getrandchar($length){ $str = null; //$strPol = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyz"; $strPol = "0123456789abcdefghijklmnopqrstuvwxyz"; $max = strlen($strPol)-1; for($i=0;$i<$length;$i++){ $str.=$strPol[rand(0,$max)]; } return $str; } $code = getrandchar(5); require_once(DEDEINC.'/alidayu-php-sdk/TopSdk.php'); $client = new TopClient; $client ->appkey = '111111' ; //登錄阿里大于查看appkey。 $client ->secretKey = 'aaaaaaaaaaaaaa' ; //登錄阿里大于查看secret。 $req = new AlibabaAliqinFcSmsNumSendRequest; $req ->setExtend( "" ); $req ->setSmsType( "normal" ); $req ->setSmsFreeSignName( "城子居" ); /*簽名名稱*/ $req ->setSmsParam( "{\"code\":\"$code\",\"name\":\"注冊(cè)\"}" ); /*模板變量,請(qǐng)確保跟審核過的短信模版變量一致,數(shù)字一定要轉(zhuǎn)換為字符串*/ $req ->setRecNum($phone);/*目標(biāo)手機(jī)號(hào)*/ $req ->setSmsTemplateCode( "SMS_1111111" );//登錄阿里大于查看/*模板ID編號(hào)*/ $resp = $client ->execute( $req ); $inquery = " INSERT INTO `imm_phonecode` (`ip`,`phone`,`phonecode`,`used`,`sendtime`) VALUES ( '$ip','$to','$code','1','$nowtime'); "; $rs = $dsql->ExecuteNoneQuery2($inquery); if( $rs = 1 ){ ShowMsg('發(fā)送成功,請(qǐng)注意查收!','-1'); exit(); } exit();
3.使用最新的阿里通信短信接口接入:
function getrandchar($length){ $str = null; //$strPol = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyz"; $strPol = "0123456789"; $max = strlen($strPol)-1; for($i=0;$i<$length;$i++){ $str.=$strPol[rand(0,$max)]; } return $str; } $number = getrandchar(4); require_once(DEDEINC.'/aliyun-php-sdk-core/Config.php'); require_once(DEDEINC.'/Dysmsapi/Request/V20170525/SendSmsRequest.php'); require_once(DEDEINC.'/Dysmsapi/Request/V20170525/QuerySendDetailsRequest.php'); function sendSms() { global $phone, $number; //此處需要替換成自己的AK信息 $accessKeyId = "yourAccessKeyId"; $accessKeySecret = "yourAccessKeySecret"; //短信API產(chǎn)品名 $product = "Dysmsapi"; //短信API產(chǎn)品域名 $domain = "dysmsapi.aliyuncs.com"; //暫時(shí)不支持多Region $region = "cn-beijing"; //初始化訪問的acsCleint $profile = DefaultProfile::getProfile($region, $accessKeyId, $accessKeySecret); DefaultProfile::addEndpoint("cn-beijing", "cn-beijing", $product, $domain); $acsClient= new DefaultAcsClient($profile); $request = new Dysmsapi\Request\V20170525\SendSmsRequest; //必填-短信接收號(hào)碼 $request->setPhoneNumbers($phone); //必填-短信簽名 $request->setSignName("六久閣www.lol9.cn"); //必填-短信模板Code $request->setTemplateCode("SMS_74725029"); //選填-假如模板中存在變量需要替換則為必填(JSON格式) $request->setTemplateParam("{\"number\":\"$number\"}"); //選填-發(fā)送短信流水號(hào) $request->setOutId("1234"); //發(fā)起訪問請(qǐng)求 $acsResponse = $acsClient->getAcsResponse($request); } sendSms(); $inquery = " INSERT INTO `imm_phonecode` (`ip`,`phone`,`phonecode`,`used`,`sendtime`) VALUES ( '$ip','$phone','$number','1','$nowtime'); "; $rs = $dsql->ExecuteNoneQuery2($inquery); if( $rs = 1 ){ echo "發(fā)送成功,請(qǐng)注意查收!"; exit(); } exit();
到這里阿里系的3個(gè)短信接口就全都在這里了,對(duì)應(yīng)的SDK需要在阿里云官方查找下載。
4.使用云之訊短信接口接入:
同樣的需要在member/index_do.php對(duì)應(yīng)的位置插入云之訊短信接口代碼。
function getrandchar($length){ $str = null; $strPol = "0123456789abcdefghijklmnopqrstuvwxyz"; $max = strlen($strPol)-1; for($i=0;$i<$length;$i++){ $str.=$strPol[rand(0,$max)]; } return $str; } require_once(DEDEINC.'/ucpaas.class.php'); $options['accountsid']=''; //對(duì)應(yīng)ucpaas.com用戶ID $options['token']=''; //對(duì)應(yīng)ucpaas.com里面的用戶token $ucpass = new Ucpaas($options); $appId = ""; //對(duì)應(yīng)ucpaas.com里面的項(xiàng)目ID $to = $phone; $templateId = ""; //對(duì)應(yīng)ucpaas.com里面的短信模版ID $code = getrandchar(5); $param= $code.',短信模版參數(shù)2'.',短信模版參數(shù)3'; // $code為生成的驗(yàn)證碼,短信模版參數(shù)2,短信模版參數(shù)3,參數(shù)之間用英文逗號(hào)間隔。 $ucpass->templateSMS($appId,$to,$templateId,$param); $inquery = " INSERT INTO `dede_phonecode` (`ip`,`phone`,`phonecode`,`used`,`sendtime`) VALUES ( '$ip','$to','$code','1','$nowtime'); "; $rs = $dsql->ExecuteNoneQuery2($inquery); if( $rs = 1 ){ ShowMsg('發(fā)送成功,請(qǐng)注意查收!','-1'); exit(); } exit();
同樣的附上短信模版:驗(yàn)證碼:{1}。您正在{2},如非您本人操作,請(qǐng)忽略此條短信。如有疑問請(qǐng)與我們聯(lián)系! 電話:{3}
版權(quán)聲明: 本站資源均來自互聯(lián)網(wǎng)或會(huì)員發(fā)布,如果侵犯了您的權(quán)益請(qǐng)與我們聯(lián)系,我們將在24小時(shí)內(nèi)刪除!謝謝!
轉(zhuǎn)載請(qǐng)注明: 織夢(mèng)DedeCMS整合阿里云短信功能