阿里云PHP SMS短信服務(wù)驗(yàn)證碼發(fā)送方法詳解
閱讀 84787 · 發(fā)布日期 2020-08-24 11:44 · 溫州優(yōu)光網(wǎng)絡(luò)科技有限公司|建站|APP小程序制作|做網(wǎng)站SEO推廣優(yōu)化
【摘要】
開(kāi)通SMS服務(wù)首先去這個(gè)網(wǎng)站開(kāi)通阿里云的SMS短信服務(wù):https://www.aliyun.com/product/sms?spm=5176.8142029.388261.295.vU5T5g相關(guān)學(xué)習(xí)推薦:php編程(視頻)創(chuàng)建簽名、模板要使用短信服務(wù)器需要先創(chuàng)建簽名和模板,并提交給阿里云審核通過(guò)才可以正常使用短信服... 【溫州小程序開(kāi)發(fā),溫州微信公眾號(hào),平陽(yáng)做網(wǎng)站,平陽(yáng)網(wǎng)站建設(shè)公司,平陽(yáng)小程序商城制作,昆陽(yáng)萬(wàn)全做網(wǎng)站,鰲江水頭小程序,蕭江騰蛟微信公眾號(hào),山門(mén)順溪南雁海西南麂鳳臥麻步懷溪網(wǎng)絡(luò)網(wǎng)店服務(wù),政采云網(wǎng)店管理服務(wù)】...
開(kāi)通SMS服務(wù)首先去這個(gè)網(wǎng)站開(kāi)通阿里云的SMS短信服務(wù):
https://www.aliyun.com/product/sms?spm=5176.8142029.388261.295.vU5T5g相關(guān)學(xué)習(xí)推薦:
php編程(視頻)創(chuàng)建簽名、模板要使用短信服務(wù)器需要先創(chuàng)建簽名和模板,并提交給阿里云審核通過(guò)才可以正常使用短信服務(wù)。
創(chuàng)建簽名創(chuàng)建簽名的時(shí)候注意一下簽名名稱(chēng),其他的話就不累贅了。
記住簽名名稱(chēng)現(xiàn)在請(qǐng)記住你創(chuàng)建的簽名名稱(chēng),一會(huì)在代碼中需要使用。
創(chuàng)建模板創(chuàng)建模板也很簡(jiǎn)單,阿里云已經(jīng)把要如何填寫(xiě)寫(xiě)的很清楚了。
查看并記住模板CODE返回你的控制臺(tái),當(dāng)你的模板審核通過(guò)時(shí)這就會(huì)出現(xiàn)大于0的數(shù)。
點(diǎn)擊這個(gè)數(shù),會(huì)進(jìn)入模板管理面板就能看到你的模板CODE了,請(qǐng)記住他。
創(chuàng)建并記住KeyId和KeySecret到控制臺(tái),把鼠標(biāo)放到右上角你的用戶(hù)名的位置會(huì)出現(xiàn)一個(gè)accessKeySecret點(diǎn)進(jìn)去就可以創(chuàng)建KeyId和KeySecret了,如果他提醒你用RAM安全什么的,你看你要不要給你的員工分配權(quán)限,如果要的話就用RAM,否則就直接點(diǎn)擊繼續(xù)使用就行了。
下載阿里云短信服務(wù)器PHP-SDK官方下載地址:
https://help.aliyun.com/document_detail/55359.html?spm=5176.8195934.507901.12.b1ngGK 本教程使用SDK下載地址:
http://pan.baidu.com/s/1bpF5B8z密匙:
pult創(chuàng)建PHP-SMS項(xiàng)目創(chuàng)建代碼文件創(chuàng)建你的代碼文件,并把這個(gè)文件放在剛才下載的SDK文件夾中的api_sdk的aliyun-php-sdk-core目錄下,并把一下代碼寫(xiě)入代碼文件。
aliyun-php-sdk-core目錄里包含了SMS短信服務(wù)的各種模塊,所以必須得放在這里面才能使用服務(wù)Config.php'
;
include_once '
Request/V20170525/SendSmsRequest.php'
;
include_once '
Request/V20170525/QuerySendDetailsRequest.php'
;
$accessKeyId = "LTAIvAaNs61JeBiN";
//阿里云KeyId $accessKeySecret = "Y3H7durYJ6GIqmJJrsdbJwPi6E8O8M";
//阿里云KeySecret //短信API產(chǎn)品名 $product = "Dysmsapi";
//照寫(xiě)就行了 //短信API產(chǎn)品域名 $domain = "dysmsapi.aliyuncs.com";
//照著寫(xiě)就行了 //暫時(shí)不支持多Region $region = "cn-hangzhou";
//照著寫(xiě)就行了 //初始化訪問(wèn)的acsCleint $profile = DefaultProfile::getProfile($region, $accessKeyId, $accessKeySecret);
DefaultProfile::addEndpoint("cn-hangzhou", "cn-hangzhou", $product, $domain);
$acsClient= new DefaultAcsClient($profile);
$request = new SendSmsRequest;
//必填-短信接收號(hào)碼。
支持以逗號(hào)分隔的形式進(jìn)行批量調(diào)用,批量上限為20個(gè)手機(jī)號(hào)碼,批量調(diào)用相對(duì)于單條調(diào)用及時(shí)性稍有延遲,驗(yàn)證碼類(lèi)型的短信推薦使用單條調(diào)用的方式 $request->setPhoneNumbers("123456789");
//這里填你要發(fā)送的電話號(hào)碼 //必填-短信簽名 $request->setSignName("xx項(xiàng)目");
//這里就是剛才讓你記住的項(xiàng)目簽名 //必填-短信模板Code $request->setTemplateCode("SMS_123456");
//這里就是模板CODE //選填-假如模板中存在變量需要替換則為必填(JSON格式) $request->setTemplateParam("{
"name":"郭濤","number":"316"}
");
//選填-發(fā)送短信流水號(hào) $request->setOutId("1234");
//照填就行了 //發(fā)起訪問(wèn)請(qǐng)求 $acsResponse = $acsClient->getAcsResponse($request);
var_dump($acsResponse);
//返回結(jié)果移入Requset還是在下載的SDK文件夾中的api_sdk目錄下,有一個(gè)交Dysmsapi的文件夾,打開(kāi)這個(gè)文件夾就會(huì)看到一個(gè)叫Request的文件夾,把這個(gè)Reques。
的件夾復(fù)制粘貼到aliyun-php-sdk-core里面。
說(shuō)實(shí)在的我搞不清阿里云這個(gè)為什么要這樣分開(kāi)裝SDK,可能是我使用的姿勢(shì)不對(duì)吧,如果有大神搞得清,還勞煩賜教小弟,好人一生平安。
移入后,打開(kāi)RequestV20170525目錄里有一個(gè)SendSmsRequest.php的源文件。
請(qǐng)屏蔽第一行的空間命名。
也就是這一行namespace DysmsapiReqestV20170525;
最后效果如下 you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ //namespace DysmsapiRequestV20170525;
//就是屏蔽這一行代碼?。。?! class SendSmsRequest extends RpcAcsRequest {
function __construct() {
parent::__construct("Dysmsapi", "2017-05-25", "SendSms");
}
private $outId;
private $signName;
private $ownerId;
private $resourceOwnerId;
private $templateCode;
private $phoneNumbers;
private $resourceOwnerAccount;
private $templateParam;
public function getOutId() {
return $this->outId;
}
public function setOutId($outId) {
$this->outId = $outId;
$this->queryParameters["OutId"]=$outId;
}
public function getSignName() {
return $this->signName;
}
public function setSignName($signName) {
$this->signName = $signName;
$this->queryParameters["SignName"]=$signName;
}
public function getOwnerId() {
return $this->ownerId;
}
public function setOwnerId($ownerId) {
$this->ownerId = $ownerId;
$this->queryParameters["OwnerId"]=$ownerId;
}
public function getResourceOwnerId() {
return $this->resourceOwnerId;
}
public function setResourceOwnerId($resourceOwnerId) {
$this->resourceOwnerId = $resourceOwnerId;
$this->queryParameters["ResourceOwnerId"]=$resourceOwnerId;
}
public function getTemplateCode() {
return $this->templateCode;
}
public function setTemplateCode($templateCode) {
$this->templateCode = $templateCode;
$this->queryParameters["TemplateCode"]=$templateCode;
}
public function getPhoneNumbers() {
return $this->phoneNumbers;
}
public function setPhoneNumbers($phoneNumbers) {
$this->phoneNumbers = $phoneNumbers;
$this->queryParameters["PhoneNumbers"]=$phoneNumbers;
}
public function getResourceOwnerAccount() {
return $this->resourceOwnerAccount;
}
public function setResourceOwnerAccount($resourceOwnerAccount) {
$this->resourceOwnerAccount = $resourceOwnerAccount;
$this->queryParameters["ResourceOwnerAccount"]=$resourceOwnerAccount;
}
public function getTemplateParam() {
return $this->templateParam;
}
public function setTemplateParam($templateParam) {
$this->templateParam = $templateParam;
$this->queryParameters["TemplateParam"]=$templateParam;
}
}
完成運(yùn)行試試吧 相關(guān)學(xué)習(xí)推薦:
編程視頻以上就是阿里云PHP SMS短信服務(wù)驗(yàn)證碼發(fā)送方法詳解的詳細(xì)內(nèi)容,更多請(qǐng)關(guān)注php中文網(wǎng)其它相關(guān)文章!
微信
分享相關(guān)標(biāo)簽:
阿里云 短信服務(wù) php本文轉(zhuǎn)載于:
jb51,如有侵犯,請(qǐng)聯(lián)系[email protected]刪除
上一篇:
詳解php版阿里云OSS圖片上傳類(lèi)
下一篇:
掌握php短信接口代碼相關(guān)文章相關(guān)視頻阿里云短信服務(wù)的詳解阿里短信服務(wù)的介紹及使用步驟最新阿里云短信服務(wù)接口類(lèi)【親測(cè)成功】詳解php版阿里云OSS圖片上傳類(lèi)阿里云PHP SMS短信服務(wù)驗(yàn)證碼發(fā)送方法詳解通過(guò)PHP程序添加數(shù)據(jù)通過(guò)PHP程序刪除數(shù)據(jù)析構(gòu)函數(shù)基本介紹 php程序執(zhí)行流程PHP重載-屬性攔截器 [溫州做網(wǎng)站PHP教程]