- 订阅消息调用成功手机没有收到服务通知,调用失败却收到了
问题总体描述: 把subscribeMessage里的time的字段 格式写错就能接收到消息,授权一次点击总是允许后就每次都能收到推送,就是报catch; 只要把time字段按照文档改对就报没有授权,但是接口走的是正常的,收不到消息 求大神支招,令求如何用定时触发器每天自动定时推送消息给已授权用户 // 云函数入口函数 exports.main = async (event, context) => { const wxContext = cloud.getWXContext() try { const result = await cloud.openapi.subscribeMessage.send({ "touser": wxContext.OPENID, "page": '/pages/schedule/index', "lang": 'zh_CN', "miniprogramState": 'developer', "template_id": 'xxxxx', "data": { "thing2": { "value": "日程,陪你赶车关门" }, "thing1": { "value": "李四" }, "thing10": { "value": "提醒事项" }, "thing12": { "value": '2019年10月1日' }, "thing11": { "value": "备注" }, }, }) return result } catch (err) { return err } } [图片] 调用成功了,提示没有授权,但是手机没有收到服务通知 ------------------------------------分割线-------------------------------------------- exports.main = async (event, context) => { const wxContext = cloud.getWXContext() try { const result = await cloud.openapi.subscribeMessage.send({ "touser": wxContext.OPENID, "page": '/pages/schedule/index', "lang": 'zh_CN', "miniprogramState": 'developer', "template_id": 'xxxxxx', "data": { "thing12": { "value": "日程,陪你赶车关门" }, "name1": { "value": "李四" }, "thing3": { "value": "提醒事项" }, "time15": { "value": '2019年10月1日' }, "thing9": { "value": "备注" }, }, }) return result } catch (err) { return err } } [图片]这段调用失败了,手机却收到了服务通知 以上真机和模拟器都试过了都不可以 [图片] [图片] 第二个报错的具体原因应该是time15 这个赋值格式不对,但我一旦把格式改好就又调用成功报没有授权的问题,但是我明明是授权了的
2023-04-06 - db.collection.add的时候数据库没有集合不会自动创建吗?
请问add的时候数据库必须有集合吗?这个方法(db.collection.add)不会自动创建集合吗 Error: errCode: -404011 cloud function execution error | errMsg: cloud.callFunction:fail requestID local_debug_611c9d3a-3d60-418f-8b54-2f64b2530387, cloud function service error code -1, error message collection.add:fail -502005 database collection not exists. [ResourceNotFound] Db or Table not exist. Please check your request, but if the problem cannot be solved, contact us.; at cloud.callFunction api;
2023-04-05 - canvas2d绘制临时路径真机不显示?
[图片] 这样写模拟器没有问题,但是真机上不显示,请问如果解决
2021-05-25 - 微信小程序如何实现将视频添加水印或图片文字并保存到本地?
微信小程序如何实现视频剪辑,将图片或者文字添加到视频里,然后在生成新的视频保存到本地或上传至服务器
2021-02-08 - 云调用的时候如何写函数才能达到数据库有这条数据就更新,如果没有就添加一条的效果?
[图片] user_info这个集合里如果有对应_id的数据就修改这条数据,如果没有对应_id就add一条数据,望大神指点一二,或者用其他子弹判断也可以
2020-04-04 - 云函数调用http请使用本地调试有返回值,使用云函数或者真机没有返回值?
云函数调用http请求const request = require('request-promise'); 用本地调试有返回值,但是用云调试或者真机就没有返回值 [图片][图片][图片]
2020-03-04