From 06cb748924ae1ccbea15e29f10b3d9e119f77ce0 Mon Sep 17 00:00:00 2001 From: Innovational <1028932693@qq.com> Date: Wed, 23 Oct 2024 15:39:00 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=20=E5=88=9B=E5=BB=BA=20Short?= =?UTF-8?q?-Link?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- WeMini/Scheme.php | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/WeMini/Scheme.php b/WeMini/Scheme.php index 2d41fb6..91cba8b 100644 --- a/WeMini/Scheme.php +++ b/WeMini/Scheme.php @@ -77,4 +77,16 @@ class Scheme extends BasicWeChat $url = 'https://api.weixin.qq.com/wxa/query_urllink?access_token=ACCESS_TOKEN'; return $this->callPostApi($url, ['url_link' => $urllink], true); } -} \ No newline at end of file + /** + * 创建 Short-Link + * @param array $data + * @return array + * @throws \WeChat\Exceptions\InvalidResponseException + * @throws \WeChat\Exceptions\LocalCacheException + */ + public function shortLink($data) + { + $url = "https://api.weixin.qq.com/wxa/genwxashortlink?access_token=ACCESS_TOKEN"; + return $this->callPostApi($url, $data, true); + } +}