From 16cc72953551cb290ff7ad1938df1c720653a20d Mon Sep 17 00:00:00 2001 From: Anyon Date: Mon, 26 Nov 2018 14:51:58 +0800 Subject: [PATCH] =?UTF-8?q?[=E6=9B=B4=E6=96=B0]=E5=A2=9E=E5=8A=A0=E9=83=A8?= =?UTF-8?q?=E5=88=86=E6=8E=A5=E5=8F=A3=E6=94=AF=E6=8C=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- WeChat/Limit.php | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/WeChat/Limit.php b/WeChat/Limit.php index ebd56d3..49304b5 100644 --- a/WeChat/Limit.php +++ b/WeChat/Limit.php @@ -38,5 +38,32 @@ class Limit extends BasicWeChat return $this->callPostApi($url, ['appid' => $this->config->get('appid')]); } + /** + * 网络检测 + * @param string $action 执行的检测动作 + * @param string $operator 指定平台从某个运营商进行检测 + * @return array + * @throws Exceptions\InvalidResponseException + * @throws Exceptions\LocalCacheException + */ + public function ping($action = 'all', $operator = 'DEFAULT') + { + $url = 'https://api.weixin.qq.com/cgi-bin/callback/check?access_token=ACCESS_TOKEN'; + $this->registerApi($url, __FUNCTION__, func_get_args()); + return $this->callPostApi($url, ['action' => $action, 'check_operator' => $operator]); + } + + /** + * 获取微信服务器IP地址 + * @return array + * @throws Exceptions\InvalidResponseException + * @throws Exceptions\LocalCacheException + */ + public function getCallbackIp() + { + $url = 'https://api.weixin.qq.com/cgi-bin/getcallbackip?access_token=ACCESS_TOKEN'; + $this->registerApi($url, __FUNCTION__, func_get_args()); + return $this->httpGetForJson($url); + } } \ No newline at end of file