微信開發示例(access_token的獲取)

兩儀發表於2015-04-14

概述

access_token是公眾號的全域性唯一票據,公眾號呼叫各介面時都需使用access_token。開發者需要進行妥善儲存。access_token的儲存至少要保留512個字元空間。access_token的有效期目前為2個小時,需定時重新整理,重複獲取將導致上次獲取的access_token失效。

access_token的獲取

<?php

define("APPID", "您的appid");
define("APPSECRET", "您的appsecret ");

$token_access_url = "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=" . APPID . "&secret=" . APPSECRET;
$res = file_get_contents($token_access_url);    //獲取檔案內容或獲取網路請求的內容
//echo $res;
$result = json_decode($res, true);   //接受一個 JSON 格式的字串並且把它轉換為 PHP 變數
$access_token = $result[`access_token`];
echo $access_token;

php>

access_token的儲存

。。。。

相關連結

。。。

相關文章