From 526f034f0153798f01fd46541d6ca31477c8db46 Mon Sep 17 00:00:00 2001 From: Innovational <1028932693@qq.com> Date: Wed, 23 Oct 2024 15:49:34 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E5=88=9B=E5=BB=BA=E5=B0=8F?= =?UTF-8?q?=E7=A8=8B=E5=BA=8F=20Short-Link=20=E6=8E=A5=E5=8F=A3?= 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 909c4a3..747c338 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); + } +}