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

微信getAccessToken方法

时间:2016-11-19 15:51:32      阅读:250      评论:0      收藏:0      [点我收藏+]

标签:request   color   缓存   url   memcach   写入   class   mem   get   

 

memcache缓存存储用户信息7000秒

<?php
function getAccessToken($appid,$appsecret) 
{
    $mem = new CacheMemcache();
    $acc = $mem->get(‘access_token_‘.$appid);
    if (!$acc) 
    {
        $url = "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=$appid&secret=$appsecret";
        $result = https_request($url);
        $jsoninfo = json_decode($result, true);
        $access_token = $jsoninfo[‘access_token‘];
        if ($access_token) 
        {
            $expire = time() + 7000;
            $mem = new CacheMemcache();
            $mem->set(‘access_token_‘.$appid,$access_token,$expire);
        }
    }
    else 
    {
        $access_token = $acc;
    }
    return $access_token;
}
?>

 

文件存储access_token

 function getAccessToken() {
    // access_token 应该全局存储与更新,以下代码以写入到文件中做示例
    $data = json_decode(file_get_contents("access_token.json"));
    if ($data->expire_time < time()) {
      $url = "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=$this->appId&secret=$this->appSecret";
      $res = json_decode($this->httpGet($url));
      $access_token = $res->access_token;
      if ($access_token) {
        $data->expire_time = time() + 7000;
        $data->access_token = $access_token;
        $fp = fopen("access_token.json", "w");
        fwrite($fp, json_encode($data));
        fclose($fp);
      }
    } else {
      $access_token = $data->access_token;
    }
    return $access_token;
  }

 

微信getAccessToken方法

标签:request   color   缓存   url   memcach   写入   class   mem   get   

原文地址:http://www.cnblogs.com/shaoing/p/6080328.html

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