From 3477bfca71f583b4890c243ba27313d06c2e27f4 Mon Sep 17 00:00:00 2001 From: Anyon Date: Thu, 9 Dec 2021 11:45:34 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E5=B0=8F=E7=A8=8B=E5=BA=8FUR?= =?UTF-8?q?L-LINK?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- WeMini/Scheme.php | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/WeMini/Scheme.php b/WeMini/Scheme.php index 52cf823..7a4ce62 100644 --- a/WeMini/Scheme.php +++ b/WeMini/Scheme.php @@ -39,4 +39,32 @@ class Scheme extends BasicWeChat $this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, ['scheme' => $scheme], true); } + + /** + * 小程序 URL-Link + * @param array $data + * @return array + * @throws \WeChat\Exceptions\InvalidResponseException + * @throws \WeChat\Exceptions\LocalCacheException + */ + public function urllink($data) + { + $url = "https://api.weixin.qq.com/wxa/generate_urllink?access_token=ACCESS_TOKEN"; + $this->registerApi($url, __FUNCTION__, func_get_args()); + return $this->callPostApi($url, $data, true); + } + + /** + * 查询 URL-Link + * @param string $urllink + * @return array + * @throws \WeChat\Exceptions\InvalidResponseException + * @throws \WeChat\Exceptions\LocalCacheException + */ + public function urlquery($urllink) + { + $url = 'https://api.weixin.qq.com/wxa/query_urllink?access_token=ACCESS_TOKEN'; + $this->registerApi($url, __FUNCTION__, func_get_args()); + return $this->callPostApi($url, ['url_link' => $urllink], true); + } } \ No newline at end of file