From 95a10d3c7abf38b473d54e905a5ff7688d0a75f9 Mon Sep 17 00:00:00 2001 From: Anyon Date: Sat, 27 Jan 2018 18:53:49 +0800 Subject: [PATCH] =?UTF-8?q?[=E6=9B=B4=E6=96=B0]=E5=A2=9E=E5=8A=A0=E6=8E=A5?= =?UTF-8?q?=E5=8F=A3POST=E5=8F=8AGET=E8=AF=B7=E6=B1=82=E9=80=9A=E7=94=A8?= =?UTF-8?q?=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Wechat/Contracts/Wechat.php | 28 ++++++++++++++++++++++++++++ Wechat/Shake.php | 2 +- 2 files changed, 29 insertions(+), 1 deletion(-) 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