注意:每個小程序都會對應(yīng)后臺的一系列接口集绰。access_token一天2000次规辱,每個有效期為2小時。所以可以保存到緩存中倒慧,每隔一段時間去獲取一次按摘。
把appid和secret放在全局配置文件中包券,方便調(diào)用。
config.php
<?php
header('Content-Type:text/html;charset=utf-8');
*****
$appid='wxc59f99d22e250d53';
$secret='fd8688709ab4e1bxawdd46a821c2e34bd';
*****
?>
獲取access_token,后臺接口
$access_token=M::Get('q******n_'.$appid);
if(!$access_token){
$url_access_token = 'https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid='.$appid.'&secret='.$secret;
$json_access_token = sendCmd($url_access_token,array());
//access_token加緩存
$arr_access_token = json_decode($json_access_token,true);
$access_token = $arr_access_token['access_token'];
M::Set('q*********en_'.$appid,$access_token,3600);
}