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