- 小程序为什么会一直报错40037?
sendone(){ wx.cloud.callFunction({ name:"fasong", data:{ openid:"oVXS160K1CF1iwFokR6cKHZ4-rUw" } }).then(res=> { console.log("发送单条成功",res) }).catch(res=>{ console.log("发送单条失败",res) }) } "openapi.subscribeMessage.send:fail invalid template_id rid: 65a39fca-18e9922f-1c5def5e" openid也是正常获取的,为什么还会一直报错呢?
01-14 - appid和openid都是正确的,为什么还是会40003报错呢?
const result = await cloud.openapi.subscribeMessage.send ({ "touser": "event.openid",//推送的用户 "page":'pages/index/index', "data": {//推送内容 "thing1":{ "value":'吃药' }, "time2":{ "value":'2024年1月11日15:30' }, "thing3":{ "value":'每次3粒' }, "short_thing17":{ "value":'每日2次' }, "thing5":{ "value":'注意辛辣' } }, "tmplateId": 'lb2gdJMstCICKoYmEQ2mA8wz2lmGOMrMFfcVUKuAwZM' }) console.log (result) return result }catch (err){ console.log (err) return err } } "Openid":"oVXS160K1CF1iwFokR6cKHZ4-rUw 这是为啥呢?
01-14