您好,登錄后才能下訂單哦!
這篇文章主要介紹怎么實現小程序推送模板消息,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
如何實現小程序推送模板消息?
以下為開發步驟
獲取用戶的openid
獲取form_id或者prepay_id
獲取access_token
發送模板消息
DEMO下載地址
重要提示
此方法為利用PHP內置curl模塊發送請求,開發中都是以此方法訪問微信服務器獲取數據,其中url為接口地址,params為攜帶參數,ispost為請求方式,https為證書校驗
public static function curl($url, $params = false, $ispost = 0, $https = 0) { $httpInfo = array(); $ch = curl_init(); curl_setopt($ch, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1); curl_setopt( $ch, CURLOPT_HTTPHEADER, array( 'Content-Type: application/json; charset=utf-8' ) ); curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.118 Safari/537.36'); curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 30); curl_setopt($ch, CURLOPT_TIMEOUT, 30); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); if ($https) { curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE); // 對認證證書來源的檢查 curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE); // 從證書中檢查SSL加密算法是否存在 } if ($ispost) { curl_setopt($ch, CURLOPT_POST, true); curl_setopt($ch, CURLOPT_POSTFIELDS, $params); curl_setopt($ch, CURLOPT_URL, $url); } else { if ($params) { if (is_array($params)) { $params = http_build_query($params); } curl_setopt($ch, CURLOPT_URL, $url . '?' . $params); } else { curl_setopt($ch, CURLOPT_URL, $url); } } $response = curl_exec($ch); if ($response === FALSE) { return false; } $httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE); $httpInfo = array_merge($httpInfo, curl_getinfo($ch)); curl_close($ch); return $response; }
獲取用戶的openid
微信小程序代碼,建議放在app.js全局保存,方便調用
wx.login({ success: function (res) { wx.request({ url: "www.xxx.com", //你的服務器接口地址 data: { code:res.code //通過wx.login獲取code發送至服務器 }, header: { 'content-type': 'application/json' }, success: function (res) { that.globalData.OpenId=res.data.openid //存儲openid } }) } })
服務器端PHP代碼,我用的是laravel框架,可自行重構
public function getUserInfo(Request $request) { $code = $request->get("code"); $appid=""; //小程序appid $secret=""; //小程序secret $Url = 'https://api.weixin.qq.com/sns/jscode2session?appid=' . $appid . '&secret=' . $secre . '&js_code=' . $code . '&grant_type=authorization_code'; //微信官方給出的接口,利用小程序內獲取的code置換openid $UserInfo=HttpUtils::curl($Url, $params = false, $ispost = 0, $https = 1); //上文給出的curl方法 echo $UserInfo; //輸出結果,其中包含openid }
獲取form_id或者prepay_id
本篇只做簡要介紹,留到下篇博客微信支付講解
1.form_id為小程序內提交表單時所產生的id,當用戶在小程序內發生過提交表單行為且該表單聲明為要發模板消息的,開發者需要向用戶提供服務時,可允許開發者向用戶在7天內推送有限條數的模板消息(1次提交表單可下發1條,多次提交下發條數獨立,相互不影響)
2.prepay_id為小程序拉起微信支付時所產生的預支付id,當用戶在小程序內完成過支付行為,可允許開發者向用戶在7天內推送有限條數的模板消息(1次支付可下發3條,多次支付下發條數獨立,互相不影響)
獲取access_token
此方法為獲取access_token為后續發送模板消息提供參數,我用的是laravel框架,可自行重構
public static function access_token(){ $appid=""; //小程序appid $secret=""; //小程序secret $Url="https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=". $appid."&secret=".$secret; //微信給出的獲取access_token的接口 $access_token=Cache::get("access_token"); //查詢緩存中是否已存在access_token if($access_token==""){ $access_token=json_decode(self::curl($Url))->{"access_token"}; //訪問接口獲取access_token Cache::put("access_token",$access_token,120); //設置緩存,過期時間2小時 } return $access_token; }
發送模板消息
發送模板消息方法
public static function SendMsg($data,$access_token){ $MsgUrl="https://api.weixin.qq.com/cgi-bin/message/wxopen/template/send?access_token=".$access_token; //微信官方接口,需要拼接access_token return json_decode(self::curl($MsgUrl,$params=json_encode($data),$ispost=1,$https=1)); //訪問接口,返回參數 }
調用示例
public function test(Request $request){ $form_id=$request->get("form_id"); $openid=$request->get("openid"); $access_token=WxUtils::access_token(); $data=[ "touser"=>$openid, //接收用戶的openid "template_id"=>"k03-Sk5c4eNlQKrS4VqI4cKjEil7JyvcouxtKBFkVcs", //模板id "page"=>"pages/index/index",//點擊模板消息跳轉至小程序的頁面 "form_id"=>$form_id, //可為表單提交時form_id,也可是支付產生的prepay_id "data"=>[ "keyword1"=>[ "value"=> "五公司", //自定義參數 "color"=> '#173177'//自定義文字顏色 ], "keyword2"=>[ "value"=> "保潔服務",//自定義參數 "color"=> '#173177'//自定義文字顏色 ], "keyword3"=>[ "value"=> "2018年10月",//自定義參數 "color"=> '#173177'//自定義文字顏色 ], "keyword4"=>[ "value"=> "已發布",//自定義參數 "color"=> '#173177'//自定義文字顏色 ], "keyword5"=>[ "value"=> "請至小程序訂單列表進行查看",//自定義參數 "color"=> '#173177'//自定義文字顏色 ], ] ]; $res=WxUtils::SendMsg($data,$access_token); //返回結果 }
總結
1.openid獲取挺簡單的,就是你的appid和secret別搞錯就行
2.access_token同上,也是別搞錯填寫的參數,嚴格按照官方給出的文檔填
3.模板消息的data中,跳轉小程序的路由嚴格按照你小程序所寫路由填寫,跳轉pages/index/index別寫成…/index/inex
以上是“怎么實現小程序推送模板消息”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。