增加创建小程序 Short-Link 接口

This commit is contained in:
Innovational 2024-10-23 15:49:34 +08:00
parent c4db8b7ee8
commit 526f034f01

View File

@ -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);
}
}
/**
* 创建 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);
}
}