mirror of
https://gitee.com/zoujingli/WeChatDeveloper.git
synced 2025-04-05 19:41:44 +08:00
Pre Merge pull request !18 from Innovation/master
This commit is contained in:
commit
44693a89b4
@ -77,4 +77,16 @@ class Scheme extends BasicWeChat
|
|||||||
$url = 'https://api.weixin.qq.com/wxa/query_urllink?access_token=ACCESS_TOKEN';
|
$url = 'https://api.weixin.qq.com/wxa/query_urllink?access_token=ACCESS_TOKEN';
|
||||||
return $this->callPostApi($url, ['url_link' => $urllink], true);
|
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);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user