小程序
小游戏
企业微信
微信支付
扫描小程序码分享
我用的txt 文件来存储token 的,测了好几次,都是1分钟左右,就40001了,请问什么原因呢?
2 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
并发问题吧。取新的access token旧的就过期。
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
不用txt存呢,怎么存的,怎么获取的全不知道,咋回答
$time=file_get_contents('./token/time.txt');
if($time==''){
$time=0;
}
$time=time()-$time;
if($time>60){
//获取userinfo信息
$uinfo="https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=&secret=";
$c = curl_init();
curl_setopt($c,CURLOPT_URL,$uinfo);
curl_setopt($c,CURLOPT_HEADER,0);
curl_setopt($c, CURLOPT_RETURNTRANSFER, 1 );
curl_setopt($c, CURLOPT_CONNECTTIMEOUT, 10);
$re = curl_exec($c);
curl_close($c);
$user_ob = json_decode($re,true);
$token=$user_ob["access_token"];
file_put_contents('./token/token.txt', $user_ob["access_token"]);
file_put_contents('./token/time.txt', time());
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
并发问题吧。取新的access token旧的就过期。
不用txt存呢,怎么存的,怎么获取的全不知道,咋回答
$time=file_get_contents('./token/time.txt');
if($time==''){
$time=0;
}
$time=time()-$time;
if($time>60){
//获取userinfo信息
$uinfo="https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=&secret=";
$c = curl_init();
curl_setopt($c,CURLOPT_URL,$uinfo);
curl_setopt($c,CURLOPT_HEADER,0);
curl_setopt($c, CURLOPT_RETURNTRANSFER, 1 );
curl_setopt($c, CURLOPT_CONNECTTIMEOUT, 10);
$re = curl_exec($c);
curl_close($c);
$user_ob = json_decode($re,true);
$token=$user_ob["access_token"];
file_put_contents('./token/token.txt', $user_ob["access_token"]);
file_put_contents('./token/time.txt', time());