中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

微信公眾平臺開發如何實現自動更新微信access token

發布時間:2021-09-10 14:25:02 來源:億速云 閱讀:531 作者:小新 欄目:移動開發

這篇文章主要介紹了微信公眾平臺開發如何實現自動更新微信access token,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

一、Access Token

access_token是公眾號的全局唯一票據,公眾號調用各接口時都需使用access_token。正常情況下access_token有效期為7200秒,重復獲取將導致上次獲取的access_token失效。

公眾號可以使用AppID和AppSecret調用本接口來獲取access_token。AppID和AppSecret可在開發模式中獲得(需要已經成為開發者,且帳號沒有異常狀態)。注意調用所有微信接口時均需使用https協議。

接口調用請求說明

http請求方式: GET
https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=APPID&secret=APPSECRET

參數說明

參數是否必須說明
grant_type獲取access_token填寫client_credential
appid第三方用戶唯一憑證
secret第三方用戶唯一憑證密鑰,既appsecret

返回說明

正常情況下,微信會返回下述JSON數據包給公眾號:

{"access_token":"ACCESS_TOKEN","expires_in":7200}

三、實現

class class_weixin
{
    var $appid = APPID;
    var $appsecret = APPSECRET;

    //構造函數,獲取Access Token
    public function __construct($appid = NULL, $appsecret = NULL)
    {
        if($appid && $appsecret){
            $this->appid = $appid;
            $this->appsecret = $appsecret;
        }

        //1. 數據庫形式
        /*
        DROP TABLE IF EXISTS `wx_token`;
        CREATE TABLE IF NOT EXISTS `wx_token` (
          `id` int(1) NOT NULL,
          `type` varchar(20) NOT NULL,
          `expire` varchar(16) NOT NULL,
          `value` varchar(600) NOT NULL,
          PRIMARY KEY (`id`)
        ) ENGINE=MyISAM DEFAULT CHARSET=utf8;

        INSERT INTO `wx_token` (`id`, `type`, `expire`, `value`) VALUES
        (1, 'access_token', '1425534992', 't3oyW9fRnOWKQHQhZXoEH-pgThhjmnCqTVpaLyUD'),
        (2, 'jsapi_ticket', '', '');
        */
        $con = mysql_connect(MYSQLHOST.':'.MYSQLPORT, MYSQLUSER, MYSQLPASSWORD);
        mysql_select_db(MYSQLDATABASE, $con);
        $result = mysql_query("SELECT * FROM `wx_token` WHERE `type` = 'access_token'");
        while($row = mysql_fetch_array($result))
        {
            $this->access_token = $row['value'];
            $this->expires_time = $row['expire'];
            break;
        }
        if (time() > ($this->expires_time + 3600)){
            $url = "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=".$this->appid."&secret=".$this->appsecret;
            $res = $this->http_request($url);
            $result = json_decode($res, true);
            $this->access_token = $result["access_token"];
            $this->expires_time = time();
            mysql_query("UPDATE `wx_token` SET `expire` = '$this->expires_time', `value` = '$this->access_token' WHERE `type` = 'access_token';");
        }

        //2. 緩存形式
        if (isset($_SERVER['HTTP_APPNAME'])){        //SAE環境,需要開通memcache
            $mem = memcache_init();
        }else {                                        //本地環境,需已安裝memcache
            $mem = new Memcache;
            $mem->connect('localhost', 11211) or die ("Could not connect");
        }
        $this->access_token = $mem->get($this->appid);
        if (!isset($this->access_token) || empty($this->access_token)){
            $url = "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=".$this->appid."&secret=".$this->appsecret;
            $res = $this->http_request($url);
            $result = json_decode($res, true);
            $this->access_token = $result["access_token"];
            $mem->set($this->appid, $this->access_token, 0, 3600);
        }

        //3. 本地寫入
        $res = file_get_contents('access_token.json');
        $result = json_decode($res, true);
        $this->expires_time = $result["expires_time"];
        $this->access_token = $result["access_token"];

        if (time() > ($this->expires_time + 3600)){
            $url = "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=".$this->appid."&secret=".$this->appsecret;
            $res = $this->http_request($url);
            $result = json_decode($res, true);
            $this->access_token = $result["access_token"];
            $this->expires_time = time();
            file_put_contents('access_token.json', '{"access_token": "'.$this->access_token.'", "expires_time": '.$this->expires_time.'}');
        }

        //4. 實時拉取
        $url = "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=".$this->appid."&secret=".$this->appsecret;
        $res = $this->http_request($url);
        $result = json_decode($res, true);
        $this->access_token = $result["access_token"];
        $this->expires_time = time();
    }

感謝你能夠認真閱讀完這篇文章,希望小編分享的“微信公眾平臺開發如何實現自動更新微信access token”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

工布江达县| 钟祥市| 北碚区| 民县| 清远市| 加查县| 马公市| 龙井市| 杂多县| 邯郸县| 奉化市| 嘉善县| 五寨县| 花莲县| 乌兰县| 五华县| 丰县| 志丹县| 东安县| 怀来县| 黔西| 齐河县| 松江区| 三台县| 萝北县| 石阡县| 都兰县| 大宁县| 怀远县| 枣阳市| 织金县| 张掖市| 格尔木市| 武强县| 五河县| 宿迁市| 德清县| 宁德市| 密云县| 长治县| 罗甸县|