From 733e1084699d394080b5748e60434bd8d5173ebd Mon Sep 17 00:00:00 2001 From: Anyon Date: Wed, 12 Sep 2018 14:10:27 +0800 Subject: [PATCH] =?UTF-8?q?[=E6=9B=B4=E6=96=B0]=E4=BF=AE=E6=AD=A3=E6=B7=BB?= =?UTF-8?q?=E5=8A=A0=E5=AE=A2=E6=9C=8D=E5=8E=BB=E9=99=A4=E5=AF=86=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- WeChat/Custom.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/WeChat/Custom.php b/WeChat/Custom.php index bdd2887..8f1c9d7 100644 --- a/WeChat/Custom.php +++ b/WeChat/Custom.php @@ -28,14 +28,13 @@ class Custom extends BasicWeChat * 添加客服帐号 * @param string $kf_account 客服账号 * @param string $nickname 客服昵称 - * @param string $password 账号密码 * @return array * @throws Exceptions\InvalidResponseException * @throws Exceptions\LocalCacheException */ - public function addAccount($kf_account, $nickname, $password) + public function addAccount($kf_account, $nickname) { - $data = ['kf_account' => $kf_account, 'nickname' => $nickname, 'password' => $password]; + $data = ['kf_account' => $kf_account, 'nickname' => $nickname]; $url = "https://api.weixin.qq.com/customservice/kfaccount/add?access_token=ACCESS_TOKEN"; $this->registerApi($url, __FUNCTION__, func_get_args()); return $this->httpPostForJson($url, $data);