使用php實現微信小程式發送模板訊息(附代碼)

來源:互聯網
上載者:User
本篇文章給大家帶來的內容是關於使用php實現小程式發送模板訊息(附代碼),有一定的參考價值,有需要的朋友可以參考一下,希望對你有所協助。

本章將會簡單說一下小程式的模板訊息發送,相對來說比較簡單,但也有一個小坑要注意的。

的地址為:

https://api.weixin.qq.com/cgi-bin/message/wxopen/template/send?access_token=ACCESS_TOKEN

相關參數為

參數 必填 說明
touser 接收者(使用者)的 openid
template_id 所需下發的模板訊息的id
page 點擊模板卡片後的跳轉頁面,僅限本小程式內的頁面。支援帶參數,(樣本index?foo=bar)。該欄位不填則模板無跳轉。
form_id 表單提交情境下,為 submit 事件帶上的 formId;支付情境下,為本次支付的 prepay_id
data 模板內容,不填則下發空模板
color 模板內容字型的顏色,不填預設黑色 【廢棄】
emphasis_keyword 模板需要放大的關鍵詞,不填則預設無放大

基本參數和地址就是以上測試的,有的人會疑惑form_id,openid,tmeplate_id該從哪裡擷取下面為先簡單說下

form_id可以由前端提供,前端可以在每一個按鈕上面提交表單擷取form_id給後端,同時後端拿到相關openid。在這裡為建議的是前端儘可能多的給後端提供,就是每個按鈕都提供給後端一個id,form_id的有效期間為7天,不管運營人員有沒有使用,數量多好過數量少。

template_id為模板id,可以登陸小程式後台在模板訊息那裡擷取到。

當我們知道這些參數後,開發人員肯定想馬上測試一下,然後就讓前端提供form_id,這裡為將說下2個坑

第一坑:電腦擷取的form_id是不可以使用的

第二坑:form_id是要手機真機擷取的,但真機的同時還要是線上的項目,未上線本地測試會提示校正form_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);//列印測試結果    }

以上就是發送模板訊息的代碼,其實只要擷取到幾個相應的參數就可以 注意相關坑就可以成功測試發送了

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.