這篇文章帶給大家的內容是關於使用php實現微信小程式發送範本訊息(附程式碼),有一定的參考價值,有需要的朋友可以參考一下,希望對你有幫助。
本章將會簡單說一下微信小程式的範本訊息發送,相對來說比較簡單,但也有一個小坑要注意的。
微信的位址為:
https://api.weixin.qq.com/cgi-bin/message/wxopen/template/send?access_token=ACCESS_TOKEN
相關參數為
#參數 | ##必填說明 | |
---|---|---|
是 | 接收者(使用者)的openid | |
是 | 所需下發的範本訊息的id | |
##否 | 點選模闆卡片後的跳躍頁面,僅限本小程式內的頁面。支援帶參數,(範例index?foo=bar)。此欄位不填則模板無跳轉。 | |
是 | 表單提交場景下,為submit 事件帶上的 formId;支付場景下,為本次支付的 prepay_id | |
是 | 模板內容,不填則下發空模板 | |
否 | 範本內容字型的顏色,不填預設黑色【廢棄】 | |
否 |
<?php //获取accesstoken public function getAccessToken($appid,secret){ $url = "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid={$appid}&secret={$secret}"; $res = $this->curl_get($url); $res = json_decode($res,1); return $res['access_token']; } //获取模板消息内容主体 //因为是测试所以写死,大家可以通过传参的方式获取 public function getMsg($openid,$template_id,$form_id,$emphasis_keyword='keyword1'){ $data['data']= ['keyword1'=>['value'=>'test1','color'=>''],'keyword2'=>['value'=>'test2','color'=>''],'keyword3'=>['value'=>'test1','color'=>'']];//内容主体 $data['touser'] = $openid;//用户的openid $data['template_id'] = $template_id;//从微信后台获取的模板id $data['form_id'] = $form_id;//前端提供给后端的form_id $data['page'] = 'pages/index/index';//小程序跳转页面 $data['emphasis_keyword'] = $emphasis_keyword;//选择放大的字体 return $data; } public function send($appid,secret,$openid,$template_id,$form_id){ $access_token = $this->getAccessToken($appid,secret); $send_url = 'https://api.weixin.qq.com/cgi-bin/message/wxopen/template/send? access_token=' . $access_token; $data = $this->getMsg($openid,$template_id,$form_id); $str = $this->curl_post($send_url,json_encode($data)); $str = json_decode($str,1); return $str; } public function curl_post($url, $fields, $data_type='text') { $cl = curl_init(); if(stripos($url, 'https://') !== FALSE) { curl_setopt($cl, CURLOPT_SSL_VERIFYPEER, FALSE); curl_setopt($cl, CURLOPT_SSL_VERIFYHOST, FALSE); curl_setopt($cl, CURLOPT_SSLVERSION, 1); } curl_setopt($cl, CURLOPT_URL, $url); curl_setopt($cl, CURLOPT_RETURNTRANSFER, 1 ); curl_setopt($cl, CURLOPT_POST, true); curl_setopt($cl, CURLOPT_POSTFIELDS, $fields); $content = curl_exec($cl); $status = curl_getinfo($cl); curl_close($cl); if (isset($status['http_code']) && $status['http_code'] == 200) { if ($data_type == 'json') { $content = json_decode($content); } return $content; } else { return FALSE; } } public function curl_get($url, $data_type='text') { $cl = curl_init(); if(stripos($url, 'https://') !== FALSE) { curl_setopt($cl, CURLOPT_SSL_VERIFYPEER, FALSE); curl_setopt($cl, CURLOPT_SSL_VERIFYHOST, FALSE); curl_setopt($cl, CURLOPT_SSLVERSION, 1); } curl_setopt($cl, CURLOPT_URL, $url); curl_setopt($cl, CURLOPT_RETURNTRANSFER, 1 ); $content = curl_exec($cl); $status = curl_getinfo($cl); curl_close($cl); if (isset($status['http_code']) && $status['http_code'] == 200) { if ($data_type == 'json') { $content = json_decode($content); } return $content; } else { return FALSE; } } punblic function index(){ $appid = 'xxx';//小程序appid $openid = 'xxx';//接收用户的openid $template_id = 'xxx';//从微信后台获取的模板id $form_id = 'xxx';//七天内的formid $data = $this->send($appid,secret,$openid,$template_id,$form_id); var_dump($data);//打印测试结果 }
以上是使用php實作微信小程式傳送範本訊息(附程式碼)的詳細內容。更多資訊請關注PHP中文網其他相關文章!