access_token的获取

access_token是公众号的全局唯一票据:
只要调用接口,基本上就需要使用access_token的值,这个值每2小时会重新刷一次(7200秒)。这时候就需要重新获取access_token,否则接口调用的时候就会报错
当进行调用接口:https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=APPID&secret=SECRET
说明:appid和secret都是填写公众平台,公众平台提供的自己可以去查看
调用代码:
  function curl_get(){ 
   $appid = "*************";
        $appsecret = "xxxxxxxxxxxxxxxxxxx";
        $url = "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=".$appid."&secret=".$secret;
        $ch = curl_init();
        curl_setopt($ch, CURLOPT_URL, $url);
        curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE); 
        curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE); 
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
        $output = curl_exec($ch);
        curl_close($ch);
        $jsoninfo = json_decode($output, true);
        $access_token = $jsoninfo["access_token"];
return $access_token;//这个就是access_token
  }
==>这个是返回的结果:{"access_token":"ACCESS_TOKEN","expires_in":7200}

你可能感兴趣的:(微信)