WeChat template message interface

// 3. Send template message
    $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('\nYou can reply to text or voice to comment on the product and merchant~'), 'color'=>'#743A3A')
            ),
    );
    $template = json_encode($template);
    $template = urldecode($template);
    //echo '<br />template parameter: '.$template;
    $url = 'https://api.weixin.qq.com/cgi-bin/message/template/send?access_token=***';
    //echo '<br />Send template message, request address: '.$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 /> Send template message, return result: '.$output;

 Document address:

http://mp.weixin.qq.com/wiki/5/6dde9eaa909f83354e0094dc3ad99e05.html

 

Guess you like

Origin http://10.200.1.11:23101/article/api/json?id=326688724&siteId=291194637