From ebefeda14f901559f1c21227b4c575b14975ec04 Mon Sep 17 00:00:00 2001 From: Anyon Date: Mon, 12 Feb 2018 17:41:22 +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=E5=A4=B4=E5=83=8F=E4=B8=8A=E4=BC=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- WeChat/Custom.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/WeChat/Custom.php b/WeChat/Custom.php index 118f44d..033fb8c 100644 --- a/WeChat/Custom.php +++ b/WeChat/Custom.php @@ -15,6 +15,7 @@ namespace WeChat; use WeChat\Contracts\BasicWeChat; +use WeChat\Contracts\Tools; /** * 客服消息处理 @@ -87,6 +88,21 @@ class Custom extends BasicWeChat return $this->httpGetForJson($url); } + /** + * 设置客服帐号的头像 + * @param string $kf_account 客户账号 + * @param string $image 头像文件位置 + * @return array + * @throws Exceptions\InvalidResponseException + * @throws Exceptions\LocalCacheException + */ + public function uploadHeadimg($kf_account, $image) + { + $url = "http://api.weixin.qq.com/customservice/kfaccount/uploadheadimg?access_token=ACCESS_TOKEN&kf_account={$kf_account}"; + $this->registerApi($url, __FUNCTION__, func_get_args()); + return $this->httpPostForJson($url, ['media' => Tools::createCurlFile($image)]); + } + /** * 客服接口-发消息 * @param array $data