mirror of
https://gitee.com/zoujingli/WeChatDeveloper.git
synced 2025-04-05 09:52:47 +08:00
fix 更新小程序模板接口
#I7IJ55 更新小程序模板接口
This commit is contained in:
parent
9eac291f5c
commit
6fabf8a9e3
@ -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]);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
x
Reference in New Issue
Block a user