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