Merge pull request #49 from qfz9527/master

修改小程序接口请求类型
This commit is contained in:
邹景立 2020-07-30 17:32:10 +08:00 committed by GitHub
commit 8f07eba9a9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -73,8 +73,9 @@ class Newtmpl extends BasicWeChat
public function getPubTemplateTitleList($ids) public function getPubTemplateTitleList($ids)
{ {
$url = 'https://api.weixin.qq.com/wxaapi/newtmpl/getpubtemplatetitles?access_token=ACCESS_TOKEN'; $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()); $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) public function getPubTemplateKeyWordsById($tid)
{ {
$url = 'https://api.weixin.qq.com/wxaapi/newtmpl/getpubtemplatekeywords?access_token=ACCESS_TOKEN'; $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()); $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'; $url = 'https://api.weixin.qq.com/wxaapi/newtmpl/gettemplate?access_token=ACCESS_TOKEN';
$this->registerApi($url, __FUNCTION__, func_get_args()); $this->registerApi($url, __FUNCTION__, func_get_args());
return $this->callPostApi($url, [], true); return $this->callGetApi($url);
} }
/** /**