From 679802ad80fe916ff5713f6d37b921449248e639 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E6=99=AF=E7=AB=8B?= Date: Sat, 14 Sep 2024 16:09:52 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=BE=AE=E4=BF=A1=E5=B0=8F=E7=A8=8B?= =?UTF-8?q?=E5=BA=8F=E6=9C=8D=E5=8A=A1=E5=B8=82=E5=9C=BA=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- WeMini/Market.php | 55 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 WeMini/Market.php diff --git a/WeMini/Market.php b/WeMini/Market.php new file mode 100644 index 0000000..44dbb9d --- /dev/null +++ b/WeMini/Market.php @@ -0,0 +1,55 @@ +callPostApi($url, $data, true); + } + + /** + * 获取服务市场返回的数据 + * @param array $data + * @return array + * @throws \WeChat\Exceptions\InvalidResponseException + * @throws \WeChat\Exceptions\LocalCacheException + */ + public function retrieve($data) + { + $url = 'https://api.weixin.qq.com/wxa/servicemarketretrieve?access_token=ACCESS_TOKEN'; + return $this->callPostApi($url, $data, true); + } + + +} \ No newline at end of file