From 34c971344e0288d661e200108a8cd2a019bd4900 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=88=98=E8=A7=82?= Date: Thu, 30 Jul 2020 15:11:50 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=B0=8F=E7=A8=8B=E5=BA=8F?= =?UTF-8?q?=E6=8E=A5=E5=8F=A3=E8=AF=B7=E6=B1=82=E7=B1=BB=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- WeMini/Newtmpl.php | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/WeMini/Newtmpl.php b/WeMini/Newtmpl.php index 0bb4027..29d7e8d 100644 --- a/WeMini/Newtmpl.php +++ b/WeMini/Newtmpl.php @@ -73,8 +73,9 @@ class Newtmpl extends BasicWeChat public function getPubTemplateTitleList($ids) { $url = 'https://api.weixin.qq.com/wxaapi/newtmpl/getpubtemplatetitles?access_token=ACCESS_TOKEN'; + $url .= '&' . http_build_query(['ids' => $ids, 'start' => '0', 'limit' => '30']); $this->registerApi($url, __FUNCTION__, func_get_args()); - return $this->callPostApi($url, ['ids' => $ids, 'start' => '0', 'limit' => '30'], true); + return $this->callGetApi($url); } /** @@ -87,8 +88,9 @@ class Newtmpl extends BasicWeChat public function getPubTemplateKeyWordsById($tid) { $url = 'https://api.weixin.qq.com/wxaapi/newtmpl/getpubtemplatekeywords?access_token=ACCESS_TOKEN'; + $url .= '&' . http_build_query(['tid' => $tid]); $this->registerApi($url, __FUNCTION__, func_get_args()); - return $this->callPostApi($url, ['tid' => $tid], true); + return $this->callGetApi($url); } /** @@ -117,7 +119,7 @@ class Newtmpl extends BasicWeChat { $url = 'https://api.weixin.qq.com/wxaapi/newtmpl/gettemplate?access_token=ACCESS_TOKEN'; $this->registerApi($url, __FUNCTION__, func_get_args()); - return $this->callPostApi($url, [], true); + return $this->callGetApi($url); } /**