微信实现给指定用户发送模板消息

浏览:17957 发布日期:2015/08/29 分类:功能实现 关键字: 模板消息
对用户发送模板消息
微信实现给指定用户发送模板消息
原文链接:http://www.580bang.com/?post=8方法
function http_request($url,$data=array()){
    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, $url);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
    curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);
    // POST数据
    curl_setopt($ch, CURLOPT_POST, 1);
    // 把post的变量加上
    curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
    $output = curl_exec($ch);
    curl_close($ch);
    return $output;
}
代码$json_token=http_request("https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=".C('WX_APPID')."&secret=".C('WX_SECRET'));
$access_token=json_decode($json_token,true);
//获得access_token
$this->access_token=$access_token[access_token];
//echo $this->access_token;exit;
//模板消息
$template=array(
        'touser'=>指定用户openid,
        'template_id'=>"模板代码",
        'url'=>"链接地址",
        'topcolor'=>"#7B68EE",
        'data'=>array(
                'first'=>array('value'=>urlencode($mcsinfo['mcs_name']."您好,您有新的订单"),'color'=>"#FF0000"),
                'keyword1'=>array('value'=>urlencode(date("Y-m-d H:i:s")),'color'=>'#FF0000'),
                'keyword2'=>array('value'=>urlencode('这是测试'),'color'=>'#FF0000'),
                'keyword3'=>array('value'=>urlencode('这是测试'),'color'=>'#FF0000'),
                'keyword4'=>array('value'=>urlencode('这是测试'),'color'=>'#FF0000'),
                'remark'=>array('value'=>urlencode('这是测试'),'color'=>'#FF0000'), )
            );
$json_template=json_encode($template);
//echo $json_template;
//echo $this->access_token;
$url="https://api.weixin.qq.com/cgi-bin/message/template/send?access_token=".$this->access_token;
$res=http_request($url,urldecode($json_template));
if ($res[errcode]==0) echo '发送成功';
评论( 相关
后面还有条评论,点击查看>>