最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

微信 getAccessToken方法詳解及實例

 更新時間:2016年11月23日 15:09:04   投稿:lqh  
這篇文章主要介紹了微信 getAccessToken方法詳解及實例的相關(guān)資料,這里提供了簡單的實例代碼,需要的朋友可以參考下

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 應(yīng)該全局存儲與更新,以下代碼以寫入到文件中做示例
  $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;
 }


感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!

相關(guān)文章

最新評論

定西市| 昌乐县| 奉贤区| 即墨市| 新宁县| 宣恩县| 中西区| 通州市| 汨罗市| 淮南市| 涡阳县| 清水河县| 徐水县| 沅江市| 荆门市| 桐乡市| 兴海县| 平凉市| 宜兰市| 日喀则市| 永兴县| 新乐市| 满城县| 衡南县| 竹北市| 旌德县| 三亚市| 南充市| 克东县| 罗定市| 大埔区| 龙海市| 黄石市| 渭南市| 新邵县| 乃东县| 晋城| 镇宁| 桑日县| 新竹县| 张家川|