微信模板消息接口
// 3、发送模版消息 $template = array( 'touser' => '***', 'template_id' => '****', 'url' => 'http://www.baidu.com', 'data' => array('productType' => array('value'=>urlencode('微信影城'), 'color'=>'#743A3A'), 'name' => array('value'=>urlencode('影票'), 'color'=>'#743A3A'), 'time' => array('value'=>urlencode('2013年8月20日 20:38'), 'color'=>'#743A3A'), 'remark' => array('value'=>urlencode('\n您可以回复文字或语音对该商品及商家进行评价哦~'), 'color'=>'#743A3A') ), ); $template = json_encode($template); $template = urldecode($template); //echo '<br />template参数:'.$template; $url = 'https://api.weixin.qq.com/cgi-bin/message/template/send?access_token=***'; //echo '<br />发送模版消息,请求地址:'.$url; $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($template)){ curl_setopt($curl, CURLOPT_POST, 1); curl_setopt($curl, CURLOPT_POSTFIELDS, $template); } curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); $output = curl_exec($curl); curl_close($curl); echo '<br />发送模版消息,返回结果:'.$output;
文档地址:
http://mp.weixin.qq.com/wiki/5/6dde9eaa909f83354e0094dc3ad99e05.html
相关推荐
83911535 2020-11-13
曾是土木人 2020-10-31
yegen00 2020-10-21
soralaro 2020-10-11
katanaFlower 2020-09-18
wytzsjzly 2020-08-17
88407710 2020-08-17
ChinaJoeEE 2020-08-16
CyborgLin 2020-08-15
Blueberry 2020-08-15
PinkBean 2020-08-11
katanaFlower 2020-08-03
hunningtu 2020-07-30
阿债的方寸天地 2020-06-28
pingyan 2020-06-25
wytzsjzly 2020-06-25
阳光岛主 2020-06-25
阿债的方寸天地 2020-06-16