问题;在调用 https://api.weixin.qq.com/cgi-bin/message/wxopen/template/send?access_token=ACCESS_TOKEN一直返回
环境:测试环境 真机调试
{"errcode":40037,"errmsg":"invalid template_id hint: [bmwUvA04278651]"}
wx.requestSubscribeMessage({
tmplIds: [template_id],
success(res) {
console.log(res);
}//这个接口正常
//appid 和 appscrit也是用的小程序的 对应上了的
$data=[
"touser"=>$openid, //接收用户的openid
"template_id"=>$template_id, //模板id
"page"=>"page/index/index",//点击模板消息跳转至小程序的页面
"form_id"=>$fomid, //可为表单提交时form_id,也可是支付产生的prepay_id
"data"=>[
"name1"=>[
"value"=> "五公司", //自定义参数
"color"=> '#173177'//自定义文字颜色
],
"thing2"=>[
"value"=> "保洁服务",//自定义参数
"color"=> '#173177'//自定义文字颜色
],
"time4"=>[
"value"=> "2018年10月",//自定义参数
"color"=> '#173177'//自定义文字颜色
],
"name5"=>[
"value"=> "已发布",//自定义参数
"color"=> '#173177'//自定义文字颜色
],
"thing6"=>[
"value"=> "请至小程序订单列表进行查看",//自定义参数
"color"=> '#173177'//自定义文字颜色
],
]
];
你好,订阅消息发送是这个接口:https://developers.weixin.qq.com/miniprogram/dev/api-backend/open-api/subscribe-message/subscribeMessage.send.html
你使用的是模板消息的