這篇文章主要介紹微信小程序url與token怎么設置,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
創(chuàng)新互聯(lián)是專業(yè)的伊川網(wǎng)站建設公司,伊川接單;提供成都網(wǎng)站設計、做網(wǎng)站、成都外貿(mào)網(wǎng)站建設公司,網(wǎng)頁設計,網(wǎng)站設計,建網(wǎng)站,PHP網(wǎng)站建設等專業(yè)做網(wǎng)站服務;采用PHP框架,可快速的進行伊川網(wǎng)站開發(fā)網(wǎng)頁制作和功能擴展;專業(yè)做搜索引擎喜愛的網(wǎng)站,專業(yè)的做網(wǎng)站團隊,希望更多企業(yè)前來合作!
微信小程序url與token設置詳解
新浪云應用sae的代碼里創(chuàng)建一個weixin.php文件,寫入以下代碼
define("TOKEN","myToken");// 后臺填寫的token,在微信公眾平臺啟用 $wechatObj = new wechatAPI(); $wechatObj->isValid(); class wechatAPI { public function isValid()//驗證微信接口,驗證函數(shù)以外的代碼和微信公眾號開發(fā)token設置相同 { $echoStr = $_GET["echostr"]; if ($this->checkSignature()) { header('content-type:text');//add,一定要加入header echo $echoStr; exit; } } private function checkSignature() //官方的驗證函數(shù) { $signature = $_GET["signature"]; $timestamp = $_GET["timestamp"]; $nonce = $_GET["nonce"]; $token = TOKEN; $tmpArr = array($token, $timestamp, $nonce); sort($tmpArr, SORT_STRING); $tmpStr = implode( $tmpArr ); $tmpStr = sha1( $tmpStr ); if( $tmpStr == $signature ){ return true; }else{ return false; } } };
保存后通過url訪問,在地址欄復制url,寫入微信公眾平臺中
在微信公眾平臺的開發(fā)設置中,填入以上獲得的url和設置的token,自動生成EncodingASEKey
設置完成
以上是“微信小程序url與token怎么設置”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關知識,歡迎關注創(chuàng)新互聯(lián)行業(yè)資訊頻道!