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