BasicWeWork.php 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | WeChatDeveloper
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2022 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://think.ctolog.com
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | github开源项目:https://github.com/zoujingli/WeChatDeveloper
  12. // +----------------------------------------------------------------------
  13. namespace WeChat\Contracts;
  14. /**
  15. * 企业微信基础类
  16. * Class BasicWeWork
  17. * @package WeChat\Contracts
  18. */
  19. class BasicWeWork extends BasicWeChat
  20. {
  21. /**
  22. * 获取访问 AccessToken
  23. * @return string
  24. * @throws \WeChat\Exceptions\InvalidResponseException
  25. * @throws \WeChat\Exceptions\LocalCacheException
  26. */
  27. public function getAccessToken()
  28. {
  29. if ($this->access_token) return $this->access_token;
  30. $ckey = $this->config->get('appid') . '_access_token';
  31. if ($this->access_token = Tools::getCache($ckey)) return $this->access_token;
  32. list($appid, $secret) = [$this->config->get('appid'), $this->config->get('appsecret')];
  33. $result = Tools::json2arr(Tools::get("https://qyapi.weixin.qq.com/cgi-bin/gettoken?corpid={$appid}&corpsecret={$secret}"));
  34. if (isset($result['access_token']) && $result['access_token']) Tools::setCache($ckey, $result['access_token'], 7000);
  35. return $this->access_token = $result['access_token'];
  36. }
  37. }