From 9b9d3b01ca128e8820cd8390ece25bcb16f07721 Mon Sep 17 00:00:00 2001 From: Anyon Date: Wed, 19 Aug 2020 16:51:04 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E4=BC=81=E4=B8=9A=E5=8F=B7?= =?UTF-8?q?=E6=94=AF=E6=8C=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- We.php | 2 +- WeChat/Contracts/BasicWeWork.php | 41 ++++++++++++++++++++++++++++++++ _test/work-config.php | 18 ++++++++++++++ _test/work-department.php | 30 +++++++++++++++++++++++ 4 files changed, 90 insertions(+), 1 deletion(-) create mode 100644 WeChat/Contracts/BasicWeWork.php create mode 100644 _test/work-config.php create mode 100644 _test/work-department.php diff --git a/We.php b/We.php index 2de2ebe..9ee7859 100644 --- a/We.php +++ b/We.php @@ -86,7 +86,7 @@ class We * 定义当前版本 * @var string */ - const VERSION = '1.2.24'; + const VERSION = '1.2.25'; /** * 静态配置 diff --git a/WeChat/Contracts/BasicWeWork.php b/WeChat/Contracts/BasicWeWork.php new file mode 100644 index 0000000..ae9200a --- /dev/null +++ b/WeChat/Contracts/BasicWeWork.php @@ -0,0 +1,41 @@ +access_token) return $this->access_token; + $ckey = $this->config->get('appid') . '_access_token'; + if ($this->access_token = Tools::getCache($ckey)) return $this->access_token; + list($appid, $secret) = [$this->config->get('appid'), $this->config->get('appsecret')]; + $result = Tools::json2arr(Tools::get("https://qyapi.weixin.qq.com/cgi-bin/gettoken?corpid={$appid}&corpsecret={$secret}")); + if (isset($result['access_token']) && $result['access_token']) Tools::setCache($ckey, $result['access_token'], 7000); + return $this->access_token = $result['access_token']; + } + +} \ No newline at end of file diff --git a/_test/work-config.php b/_test/work-config.php new file mode 100644 index 0000000..fc62af1 --- /dev/null +++ b/_test/work-config.php @@ -0,0 +1,18 @@ + '', // 企业ID + 'appsecret' => '', // 应用的凭证密钥 +]; \ No newline at end of file diff --git a/_test/work-department.php b/_test/work-department.php new file mode 100644 index 0000000..dac359e --- /dev/null +++ b/_test/work-department.php @@ -0,0 +1,30 @@ +callGetApi($url); + echo '
';
+    print_r(BasicWeWork::instance($config)->config->get());
+    print_r($result);
+    echo '
'; +} catch (Exception $exception) { + echo $exception->getMessage() . PHP_EOL; +}