wechat-php-sdk
wechat-php-sdk copied to clipboard
企业微信里cache name不应该是appid
$authname = 'qywechat_access_token' . $appid;
因为企业微信会有多个应用需要缓存access_token 而appid 是企业微信的appid 是唯一的 应该使用appsecret 或者 appid+agentid
$authname = 'qywechat_access_token' . $appsecret;