php获取微信基础接口凭证Access_token
程序员文章站
2022-06-09 12:39:27
本文为大家分享了php获取微信基础接口凭证access_token的具体代码,供大家参考,具体内容如下
access_token是公众号的全局唯一票据,公众号调用各接口时...
本文为大家分享了php获取微信基础接口凭证access_token的具体代码,供大家参考,具体内容如下
access_token是公众号的全局唯一票据,公众号调用各接口时都需使用access_token。开发者需要进行妥善保存。access_token的有效期目前为2个小时,需定时刷新,重复获取将导致上次获取的access_token失效。
使用appid和appsecret调用本接口来获取access_token。appid和appsecret可在微信公众平台官网-开发者中心页中获得。
1. 构造一个请求函数
//设置网络请求配置 public function _request($curl,$https=true,$method='get',$data=null){ // 创建一个新curl资源 $ch = curl_init(); // 设置url和相应的选项 curl_setopt($ch, curlopt_url, $curl); //要访问的网站 //启用时会将头文件的信息作为数据流输出。 curl_setopt($ch, curlopt_header, false); //将curl_exec()获取的信息以字符串返回,而不是直接输出。 curl_setopt($ch, curlopt_returntransfer, true); if($https){ //false 禁止 curl 验证对等证书(peer's certificate)。 curl_setopt($ch, curlopt_ssl_verifypeer, false); curl_setopt($ch, curlopt_ssl_verifyhost, true); //验证主机 } if($method == 'post'){ curl_setopt($ch, curlopt_post, true); //发送 post 请求 //全部数据使用http协议中的 "post" 操作来发送。 curl_setopt($ch, curlopt_postfields, $data); } // 抓取url并把它传递给浏览器 $content = curl_exec($ch); //关闭curl资源,并且释放系统资源 curl_close($ch); return $content; }
2.获取票据并保存
//获取令牌[access_token] public function _getaccesstoken(){ //指定保存文件位置 if(!is_dir('./access_token/')){ mkdir(iconv("utf-8", "gbk", './access_token/'),0777,true); } $file = './access_token/token'; if(file_exists($file)){ $content = file_get_contents($file); $cont = json_decode($content); if( (time()-filemtime($file)) < $cont->expires_in){ //当前时间-文件创建时间<token过期时间 return $cont->access_token; } } $curl = 'https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid='.$this->_appid.'&secret='.$this->_appsecret; $content = $this->_request($curl); file_put_contents($file,$content); $cont = json_decode($content); return $cont->access_token; }
*出于安全考虑的话,获取到的票据可以先编码或加密再保存,使用的时候进行解码解密再使用!
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: 检查网站的优化是否合格的方法
推荐阅读
-
php获取微信基础接口凭证Access_token
-
PHP cURL获取微信公众号access_token的实例
-
PHP---微信JS-SDK获取access_token/jsapi_ticket/signature权限签名算法,php/thinkphp实现微信分享自定义文字和图片
-
微信小程序开发之获取用户手机号码(php接口解密)
-
php获取微信基础接口凭证Access_token
-
微信access_token的获取开发示例,access_token示例_PHP教程
-
php微信开发 大神看看有没有语法错误,能不能自动获取到最新access_token
-
微信公众号开发C#系列-4、获取接口调用凭证
-
php获取微信公众号access_token老是错误,怎么办?
-
PHP cURL获取微信公众号access_token的实例