在這篇微信公衆平臺開發教程中,咱們將介紹如何開發模板消息,即如何用程序發送模板消息功能。
本文分爲如下三個部分:php
模板消息的申請需帳號已經開通微信支付權限。json
在微信公衆平臺的後臺,依次進入「功能->添加功能插件->模板消息」,便可申請模板消息。api
點擊申請微信
申請時,選擇2個和本身相關的行業便可。app
提交而且申請經過後,能夠在模板庫中看到模板消息列表微信公衆平臺
進入想要使用的模板,點擊添加curl
添加後就存放到「個人模板庫」中了微信支付
查看模板的詳情,能夠看到模板的id及各項內容參數名this
不一樣的模板消息的內容結構不同。這些id及字段名將在程序中使用到。url
模板消息的定義以下:
模板消息也是使用access token做爲受權來發送。
咱們在微信公衆平臺高級SDK的基本上,稍加修改便可。模板消息的SDK實現以下
<?php namespace common\extensions\weixin; use Yii; class weixin{ public $appid = ''; public $appsecret = ''; public $access_token = null; function __construct(){ $this->appid = 'xxxxxxxxxxxxxx'; $this->appsecret = 'xxxxxxxxxxxxx'; } /** * 獲取微信基礎接口憑證Access_token * @param $refresh 強制刷新, 默認false * @return String */ public function getAccess_token($refresh = false) { $data = json_decode(file_get_contents(Yii::getAlias('@common').'/extensions/weixin/access_token.json')); if ( $data->expire_time < time() || $refresh ) { $url = 'https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid='.$this->appid.'&secret='.$this->appsecret; $result = json_decode(file_get_contents($url)); $access_token = isset($result->access_token) ? $result->access_token : ''; if (isset($result->errcode) && !$access_token) { // $this->error('get access_token failed.'); } else { $data->expire_time = time() + 7000; $data->access_token = $access_token; $fp = fopen(Yii::getAlias('@common').'/extensions/weixin/access_token.json', "w"); fwrite($fp, json_encode($data)); fclose($fp); $this->access_token = $access_token; } } else { $this->access_token = $data->access_token; } return $this->access_token; } //發送模板消息 public function send_template_message($data) { $url = 'https://api.weixin.qq.com/cgi-bin/message/template/send?access_token=' . $this->getAccess_token(true); $result = $this->http_request($url, urldecode(json_encode($data))); return json_decode($result, true); } // 發送 protected function http_request($url, $data = null) { $curl = curl_init(); curl_setopt($curl, CURLOPT_URL, $url); curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, FALSE); curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, FALSE); if (!empty($data)) { curl_setopt($curl, CURLOPT_POST, 1); curl_setopt($curl, CURLOPT_POSTFIELDS, $data); } curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); $output = curl_exec($curl); curl_close($curl); return $output; } }
咱們以一個預警監控模板爲例,它的內容以下。
調用sdk發送內容