增加小程序URL-LINK

This commit is contained in:
Anyon 2021-12-09 11:45:34 +08:00
parent 5409c53f07
commit 3477bfca71

View File

@ -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);
}
}