1.获取小程序模板库标题列表
https://api.weixin.qq.com/cgi-bin/wxopen/template/library/list?access_token={我的access_token}
返回
{
"errcode": -1,
"errmsg": "system error hint: [muaUYa0982vr22]"
}
2.获取帐号下已存在的模板列表
https://api.weixin.qq.com/cgi-bin/wxopen/template/list?access_token={我的access_token}
返回
{
"errcode": 0,
"errmsg": "ok",
"list": []
}
现在关于模板消息的这些接口能正常用吗?求解
6楼正解,比如PHP的话curl相关部分代码:
$postFields
= json_encode(
array
(
"offset"
=> 0,
"count"
=> 5,
));
curl_setopt(
$api
, CURLOPT_POST, true);
curl_setopt(
$api
, CURLOPT_POSTFIELDS,
$postFields
);
传递了相关参数还是一样的返回结果
需要POST参数,详见文档
{
offset: 0,
count: 10
}
用json格式就可以了
遇到了和您一样的问题, 您的解决了吗?
list里边一直都是空的
没有
遇到了和您一样的问题, 您的解决了吗?