`

微信模板消息接口

 
阅读更多
// 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

 

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics