diff --git a/Wechat/Contracts/Wechat.php b/Wechat/Contracts/Wechat.php index 06b9552..e619315 100644 --- a/Wechat/Contracts/Wechat.php +++ b/Wechat/Contracts/Wechat.php @@ -155,4 +155,32 @@ class Wechat return $url = str_replace('ACCESS_TOKEN', $this->access_token, $url); } + /** + * 接口通用POST请求方法 + * @param string $url 接口URL + * @param array $data POST提交接口参数 + * @param bool $isBuildJson + * @return array + * @throws InvalidResponseException + * @throws \Wechat\Exceptions\LocalCacheException + */ + public function callPostApi($url, array $data, $isBuildJson = true) + { + $this->registerApi($url, __FUNCTION__, func_get_args()); + return $this->httpPostForJson($url, $data, $isBuildJson); + } + + /** + * 接口通用GET请求方法 + * @param string $url 接口URL + * @return array + * @throws InvalidResponseException + * @throws \Wechat\Exceptions\LocalCacheException + */ + public function callGetApi($url) + { + $this->registerApi($url, __FUNCTION__, func_get_args()); + return $this->httpGetForJson($url); + } + } \ No newline at end of file diff --git a/Wechat/Shake.php b/Wechat/Shake.php index b9927ec..bcea93d 100644 --- a/Wechat/Shake.php +++ b/Wechat/Shake.php @@ -360,5 +360,5 @@ class Shake extends Wechat $this->registerApi($url, __FUNCTION__, func_get_args()); return $this->httpPostForJson($url, $data); } - + } \ No newline at end of file