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

概述

access_token是公衆號的全局惟一票據,公衆號調用各接口時都需使用access_token。開發者須要進行妥善保存。access_token的存儲至少要保留512個字符空間。access_token的有效期目前爲2個小時,需定時刷新,重複獲取將致使上次獲取的access_token失效。php

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的存儲

。。。。json

相關連接

。。。api

相關文章
相關標籤/搜索