From f61067ce5a35409f61c679272b9931095ee73df2 Mon Sep 17 00:00:00 2001 From: Anyon Date: Thu, 9 Dec 2021 10:37:31 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E5=B0=8F=E7=A8=8B=E5=BA=8F?= =?UTF-8?q?=20URL-Scheme?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- We.php | 3 ++- WeMini/Scheme.php | 42 ++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 44 insertions(+), 1 deletion(-) create mode 100644 WeMini/Scheme.php diff --git a/We.php b/We.php index 8345b70..d761055 100644 --- a/We.php +++ b/We.php @@ -66,6 +66,7 @@ use WeChat\Exceptions\InvalidInstanceException; * @method \WeMini\Plugs WeMiniPlugs($options = []) static 小程序插件管理 * @method \WeMini\Poi WeMiniPoi($options = []) static 小程序地址管理 * @method \WeMini\Qrcode WeMiniQrcode($options = []) static 小程序二维码管理 + * @method \WeMini\Scheme WeMiniScheme($options = []) static 小程序 URL-Scheme * @method \WeMini\Search WeMiniSearch($options = []) static 小程序搜索 * @method \WeMini\Security WeMiniSecurity($options = []) static 小程序内容安全 * @method \WeMini\Soter WeMiniSoter($options = []) static 小程序生物认证 @@ -88,7 +89,7 @@ class We * 定义当前版本 * @var string */ - const VERSION = '1.2.33'; + const VERSION = '1.2.34'; /** * 静态配置 diff --git a/WeMini/Scheme.php b/WeMini/Scheme.php new file mode 100644 index 0000000..03ee027 --- /dev/null +++ b/WeMini/Scheme.php @@ -0,0 +1,42 @@ +registerApi($url, __FUNCTION__, func_get_args()); + return $this->callPostApi($url, $data, true); + } + + /** + * 查询 URL-Scheme + * @param string $scheme + * @return array + * @throws \WeChat\Exceptions\InvalidResponseException + * @throws \WeChat\Exceptions\LocalCacheException + */ + public function query($scheme) + { + $url = 'https://api.weixin.qq.com/wxa/queryscheme?access_token=ACCESS_TOKEN'; + $this->registerApi($url, __FUNCTION__, func_get_args()); + return $this->callPostApi($url, ['scheme' => $scheme], true); + } +} \ No newline at end of file