请问解决了吗
小程序体验版订阅消息,后台服务发送消息 返回的OK,但是微信服务通知里确没有收到消息?我用小程序体验版订阅消息,后台服务发送消息 返回的OK,但是微信服务通知里确没有收到消息? string Url = "https://api.weixin.qq.com/cgi-bin/message/subscribe/send?access_token="+ token; var postdata = new { touser = openId, template_id = templeteId, page = "pages/index/index", data = new { thing1 = new { value = "今日行程" }, date2 = new { value = "2020-02-20" }, thing4 = new { value = "请做好准备,即将出发" } } }; wenXinResult = HttpHelper.HttpPostJson(Url, JsonHelper.Serialize(postdata), false); wenXinResult 里返回的是成功!服务通知里确没有收到消息,请教大神 这是哪里出问题了吗?
2023-08-19