时间:2021-05-18
memcache缓存存储用户信息7000秒
<?phpfunction 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; }感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
微信小程序日历组件calendar详解及实例模版使用:src="../cal/calendar.wxml">is="calendar"data="{{selec
微信小程序template模板详解及实例首先看一些官方的一些介绍。模板:模板功能是通过对template标签的属性name=””去创建不同模板,通过is=”na
详解微信开发中snsapi_base和snsapi_userinfo及静默授权的实现snsapi_base与snsapi_userinfo属于微信网页授权获取用
微信小程序检查接口状态实例详解实例代码://检查接口是否可用wx.getSetting({success(res){if(!res['scope.record'
微信小程序后台解密用户数据实例详解微信小程序API文档:https://mp.weixin.qq.com/debug/wxadoc/dev/api/api-lo