码迷,mamicode.com
首页 > 微信 > 详细

微信公众号推送

时间:2017-08-24 11:33:55      阅读:400      评论:0      收藏:0      [点我收藏+]

标签:array   blog   access   内容   https   user   认证   gen   public   

$data[‘template_id‘] = D(‘Weixintmpl‘)->getFieldBySerial($serial,‘template_id‘);//支付成功模板
$data[‘touser‘] = D(Connect‘)->where("type=‘weixin‘")->getFieldByUid($uid,‘open_id‘);
$this->tmplmesg($data);
public function tmplmesg($data) { $site_token = $this->getSiteToken();// 获取主站的token $url = "https://api.weixin.qq.com/cgi-bin/message/template/send?access_token={$site_token}"; $result = $this->post($url, json_encode($data) ); $result = (array)json_decode($result); if($result[‘errcode‘]){ return false; } return true; }

 技术分享

function getSiteToken(){ //获取主站的TOKEN
        $cache = cache(array(‘type‘ => ‘File‘, ‘expire‘ => 7000));
   
        if (!$data = $cache->get($this->token)) {
            $this->config = D(‘Setting‘)->fetchAll();
            $url = ‘https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=‘ .
                    $this->config[‘weixin‘][‘appid‘] . ‘&secret=‘ .
                    $this->config[‘weixin‘][‘appsecret‘];
            //var_dump($this->config[‘weixin‘]);
            $result = $this->get($url);
            $result = json_decode($result, true);
            if (!empty($result[‘errcode‘])) return;
            $data = $result[‘access_token‘];
            $cache->set($this->token, $data);
        }
        return $data;
    }

 

// 现成的类  curl.class.php
function
post($url, $data) { // 模拟提交数据函数 $curl = curl_init(); // 启动一个CURL会话 curl_setopt($curl, CURLOPT_URL, $url); // 要访问的地址 curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, 0); // 对认证证书来源的检查 curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, 1); // 从证书中检查SSL加密算法是否存在 curl_setopt($curl, CURLOPT_USERAGENT, $_SERVER[‘HTTP_USER_AGENT‘]); // 模拟用户使用的浏览器 curl_setopt($curl, CURLOPT_FOLLOWLOCATION, 1); // 使用自动跳转 curl_setopt($curl, CURLOPT_AUTOREFERER, 1); // 自动设置Referer curl_setopt($curl, CURLOPT_POST, 1); // 发送一个常规的Post请求 curl_setopt($curl, CURLOPT_POSTFIELDS, $data); // Post提交的数据包 if($this->cookie == true) curl_setopt($curl, CURLOPT_COOKIEFILE, $this->cookie_file); // 读取上面所储存的Cookie信息 curl_setopt($curl, CURLOPT_TIMEOUT, 30); // 设置超时限制防止死循环 curl_setopt($curl, CURLOPT_HEADER, 0); // 显示返回的Header区域内容 curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); // 获取的信息以文件流的形式返回 $tmpInfo = curl_exec($curl); // 执行操作 if (curl_errno($curl)) { echo ‘Errno‘ . curl_error($curl); } curl_close($curl); // 关键CURL会话 return $tmpInfo; // 返回数据 }

 

 

function post($url, $data) { // 模拟提交数据函数      
$curl = curl_init(); // 启动一个CURL会话
curl_setopt($curl, CURLOPT_URL, $url); // 要访问的地址
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, 0); // 对认证证书来源的检查
curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, 1); // 从证书中检查SSL加密算法是否存在
curl_setopt($curl, CURLOPT_USERAGENT, $_SERVER[‘HTTP_USER_AGENT‘]); // 模拟用户使用的浏览器
curl_setopt($curl, CURLOPT_FOLLOWLOCATION, 1); // 使用自动跳转
curl_setopt($curl, CURLOPT_AUTOREFERER, 1); // 自动设置Referer
curl_setopt($curl, CURLOPT_POST, 1); // 发送一个常规的Post请求
curl_setopt($curl, CURLOPT_POSTFIELDS, $data); // Post提交的数据包
if($this->cookie == true) curl_setopt($curl, CURLOPT_COOKIEFILE, $this->cookie_file); // 读取上面所储存的Cookie信息
curl_setopt($curl, CURLOPT_TIMEOUT, 30); // 设置超时限制防止死循环
curl_setopt($curl, CURLOPT_HEADER, 0); // 显示返回的Header区域内容
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); // 获取的信息以文件流的形式返回
$tmpInfo = curl_exec($curl); // 执行操作
if (curl_errno($curl)) {
echo ‘Errno‘ . curl_error($curl);
}
curl_close($curl); // 关键CURL会话
return $tmpInfo; // 返回数据
}

微信公众号推送

标签:array   blog   access   内容   https   user   认证   gen   public   

原文地址:http://www.cnblogs.com/llkbk/p/7422086.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!