From 6fabf8a9e3755f41639c65efcf6e9e06da4a8ff2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E6=99=AF=E7=AB=8B?= Date: Wed, 5 Jul 2023 16:21:57 +0800 Subject: [PATCH] =?UTF-8?q?fix=20=E6=9B=B4=E6=96=B0=E5=B0=8F=E7=A8=8B?= =?UTF-8?q?=E5=BA=8F=E6=A8=A1=E6=9D=BF=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit #I7IJ55 更新小程序模板接口 --- WeChat/Template.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/WeChat/Template.php b/WeChat/Template.php index 95776c6..c643eb9 100644 --- a/WeChat/Template.php +++ b/WeChat/Template.php @@ -55,16 +55,17 @@ class Template extends BasicWeChat /** * 获得模板ID - * @param string $tpl_id 板库中模板的编号,有“TM**”和“OPENTMTM**”等形式 + * @param string $templateIdShort 板库中模板的编号,有“TM**”和“OPENTMTM**”等形式 + * @param array $keywordNameList 选用的类目模板的关键词 * @return array * @throws Exceptions\InvalidResponseException * @throws Exceptions\LocalCacheException */ - public function addTemplate($tpl_id) + public function addTemplate($templateIdShort, $keywordNameList = []) { $url = "https://api.weixin.qq.com/cgi-bin/template/api_add_template?access_token=ACCESS_TOKEN"; $this->registerApi($url, __FUNCTION__, func_get_args()); - return $this->httpPostForJson($url, ['template_id_short' => $tpl_id]); + return $this->httpPostForJson($url, ['template_id_short' => $templateIdShort, 'keyword_name_list' => $keywordNameList]); } /**