From e7fc0e1302409d02a34b9718d9103ead83d3e13f Mon Sep 17 00:00:00 2001 From: Anyon Date: Mon, 12 Feb 2018 17:51:26 +0800 Subject: [PATCH] =?UTF-8?q?[=E6=9B=B4=E6=96=B0]=E5=A2=9E=E5=8A=A0=E5=AE=A2?= =?UTF-8?q?=E6=9C=8D=E7=BB=91=E5=AE=9A=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- WeChat/Custom.php | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/WeChat/Custom.php b/WeChat/Custom.php index 033fb8c..50e86b6 100644 --- a/WeChat/Custom.php +++ b/WeChat/Custom.php @@ -75,6 +75,21 @@ class Custom extends BasicWeChat return $this->httpPostForJson($url, $data); } + /** + * 邀请绑定客服帐号 + * @param string $kf_account 完整客服帐号,格式为:帐号前缀@公众号微信号 + * @param string $invite_wx 接收绑定邀请的客服微信号 + * @return array + * @throws Exceptions\InvalidResponseException + * @throws Exceptions\LocalCacheException + */ + public function inviteworker($kf_account, $invite_wx) + { + $url = 'https://api.weixin.qq.com/customservice/kfaccount/inviteworker?access_token=ACCESS_TOKEN'; + $this->registerApi($url, __FUNCTION__, func_get_args()); + return $this->callPostApi($url, ['kf_account' => $kf_account, 'invite_wx' => $invite_wx]); + } + /** * 获取所有客服账号 * @return array